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