List objects are returned by the NewList method of factory objects and by many other methods and properties.
List numbering begins at one, for example, myList.Item(1).
Implemented Interface | Description |
---|---|
IList2 | Adds to the IList interface missing basic functionality. |
Add | Adds a new item to the current list object. |
Clear | Removes all the items from the list. |
CopyFrom | Replaces the current contents with the contents of the given source enumeration. Items are copied in chunks of 100 pieces each. |
IndexOfItem | Gets the index of the passed object. |
Insert | Inserts a new item at the specified position. |
Remove | Removes the specified item from the current list object. |
Swap | Swaps the two list items specified by their positions. |
_NewEnum | Gets an IEnumVARIANT enumerator. For information on the IEnumVARIANT, see Microsoft documentation. |
Count | The number of items in the list. |
Item | Gets an item by index. The index is one-based. |
TotalCount | Total result count, when fetch limit is used in filter. |