The collection internally manages an aItems array which can also be accessed directly for performance if necessary.
Custom
| Member | Description | |
|---|---|---|
![]() |
Add | Adds an item to the Collection. o.Add(Value) |
![]() |
Clear | Clears all of the collection's items. o.Clear() |
![]() |
InsertAt | Inserts an item at the specified index position. Items are inserted before the item specified. o.InsertAt(Position,Value) |
![]() |
Item | Returns an item from the collection by in integer index value. o.Item(Index) |
![]() |
Remove | Removes an item from the collection by its index value. o.Remove(Index) |
![]() |
UpdateItem | Updates an item in the collection by its numeric index value. o.UpdateItem(lnIndex) |
![]() |
aItems[] | The internally maintained array of items added. This array is one dimensional and contains only the values added. |
![]() |
Count | The count of items in this collection. |