InstancesNavigationPoint [] (index:
number)
Returns the NavigationPoint with the specified index.
Parameter | Type | Description |
index | number | The index. |
NavigationPoint add ([withProperties:
Object])
Creates a new NavigationPoint.
Parameter | Type | Description |
withProperties | Object | Initial values for properties of the new NavigationPoint (Optional) |
NavigationPoint anyItem ()
Returns any NavigationPoint in the collection.
number count ()
Displays the number of elements in the NavigationPoint.
Array of NavigationPoint everyItem ()
Returns every NavigationPoint in the collection.
NavigationPoint firstItem ()
Returns the first NavigationPoint in the collection.
NavigationPoint item (index:
varies)
Returns the NavigationPoint with the specified index or name.
Parameter | Type | Description |
index | Long Integer String | The index or name. Can accept: Long Integer or String. |
NavigationPoint itemByID (id:
number)
Returns the NavigationPoint with the specified ID.
Parameter | Type | Description |
id | number | The ID. |
NavigationPoint itemByName (name:
string)
Returns the NavigationPoint with the specified name.
Parameter | Type | Description |
name | string | The name. |
Array of NavigationPoint itemByRange (from:
varies, to:
varies)
Returns the NavigationPoints within the specified range.
Parameter | Type | Description |
from | Long Integer NavigationPoint String | The NavigationPoint, index, or name at the beginning of the range. Can accept: NavigationPoint, Long Integer or String. |
to | Long Integer NavigationPoint String | The NavigationPoint, index, or name at the end of the range. Can accept: NavigationPoint, Long Integer or String. |
NavigationPoint lastItem ()
Returns the last NavigationPoint in the collection.
NavigationPoint middleItem ()
Returns the middle NavigationPoint in the collection.
NavigationPoint nextItem (obj:
NavigationPoint)
Returns the NavigationPoint whose index follows the specified NavigationPoint in the collection.
Parameter | Type | Description |
obj | NavigationPoint | The NavigationPoint whose index comes before the desired NavigationPoint. |
NavigationPoint previousItem (obj:
NavigationPoint)
Returns the NavigationPoint with the index previous to the specified index.
Parameter | Type | Description |
obj | NavigationPoint | The index of the NavigationPoint that follows the desired NavigationPoint. |
string toSource ()
Generates a string which, if executed, will return the NavigationPoint.
|