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