DataObjectList
¶
DataObjectList is the base class for list data object.
Inherits properties and message types from DataObjectListMetadata.
| itemCount() | Returns the count of items on the list |
| acquireItem() | Acquires an item from a list |
| releaseItem() | Releases any resources associated with acquiring an item from a list |
| getItemTemplate() | Returns the tree structure of a data source for individual list item |
Returns the count of items on the list.
| (number) |
Acquires an item from a list.
To release resources, associated with acquiring this item, call releaseItem.
| index | (number) | Index of the item. |
| (DataObject) |
Releases any resources associated with acquiring an item from a list.
| index | (number) | Index of the item. |
Returns the tree structure of a data source for individual list item. Only hierarchy and object types are valid, the data does not have to be.
| (DataObject or nil) |