InstancesChange [] (index:
number)
Returns the Change with the specified index.
Parameter | Type | Description |
index | number | The index. |
Change anyItem ()
Returns any Change in the collection.
number count ()
Displays the number of elements in the Change.
Array of Change everyItem ()
Returns every Change in the collection.
Change firstItem ()
Returns the first Change in the collection.
Change item (index:
varies)
Returns the Change with the specified index or name.
Parameter | Type | Description |
index | Long Integer String | The index or name. Can accept: Long Integer or String. |
Array of Change itemByRange (from:
varies, to:
varies)
Returns the Changes within the specified range.
Parameter | Type | Description |
from | Change Long Integer String | The Change, index, or name at the beginning of the range. Can accept: Change, Long Integer or String. |
to | Change Long Integer String | The Change, index, or name at the end of the range. Can accept: Change, Long Integer or String. |
Change lastItem ()
Returns the last Change in the collection.
Change middleItem ()
Returns the middle Change in the collection.
Change nextItem (obj:
Change)
Returns the Change whose index follows the specified Change in the collection.
Parameter | Type | Description |
obj | Change | The Change whose index comes before the desired Change. |
Change previousItem (obj:
Change)
Returns the Change with the index previous to the specified index.
Parameter | Type | Description |
obj | Change | The index of the Change that follows the desired Change. |
string toSource ()
Generates a string which, if executed, will return the Change.
|