|
Count
|
Returns the number of nodes in the linked list.
|
|
Empty
|
Returns true if the linked list is empty.
|
|
EndOfList
|
Returns true when the last accessed node has been returned.
|
|
Head
|
Specifies the first node in the linked list.
|
|
Item[Integer]
|
Returns the Item property for the node at the specified position in the list.
|
|
LastAccessedIndex
|
Caches the index of the last node accessed. This helps speeds up subsequent calls to Item or Node properties.
|
|
LastAccessedNode
|
Caches the last node accessed. This helps speeds up subsequent calls to Item or Node properties.
|
|
Next
|
Moves the internal Node to the next node in the linked list
|
|
Node[Integer]
|
Returns the the node at the specified position in the list.
|
|
OnChange
|
Occurs when a node is added or removed from the linked list.
Write an OnChange event to respond to changes in the linked list.
|
|
Tail
|
Specifies the last node in the linked list.
|
|
UpdateCount
|
Represents property UpdateCount.
|