Object
ObjectArray
ObjectArray | The default constructor for the ObjectArray class. |
ObjectArray | Use this constructor to construct a instance of the array and have influence on the grow rate of the array. |
Add | Use this method to add a object to the array. |
AddItems | Use this method to add multiple objects from any container that implements the IIterator interface. |
Append | Use this method to append a object to the array. |
CombineWith | Appends the passed in ObjectArray to the current ObjectArray. |
Count | Use this function to get the element count from the array. |
GetAt | Use this function to read a item from the array. |
GetNext | Use this function to get next item from the ObjectArray. |
HasNext | Use this function to get info if there are more items in the ObjectArray. |
IndexOf | Returns a index of a element in the array. |
Insert | Use this method to insert a object to the array. |
Item | Use this setter/getter function to read or write to a item in the array. |
Map | The method that will handle mapping each element of the array. |
MoveFirst | Use to reset the iterator in the ObjectArray. |
Operator_Redim | Implements the Redim operator. |
Operator_Subscript | Implements operator to read from the array with the ( ) indexer operator. |
Operator_Subscript | Implements operator to write to the array with the ( ) indexer operator. |
PeekNext | Use this function to peek at next item from the ObjectArray without iterating to next item. |
Remove | Use this method to remove a single object from the array. |
Remove | Use this method to remove objects from the array. |
RemoveAt | Use this method to remove a single object from the array. |
Resize | Use this method to resize the array. |
SetAt | Use this function to write a item to the array. |
Sort | Use this method to sort the array. |
Swap | Use this method to swap two objects in the array. |
Walk | Calls the given delegate routine for each element in the array. |
MapObjectArrayDelegate (console safe) | A delegate for the Map method on this class. |
WalkObjectArrayDelegate (console safe) | A delegate for the Walk method on this class. |