[This is preliminary documentation and subject to change.]
This interface allows Automation clients, such as VB Script, to retrieve collection information. C or C++ programs use enumerator interfaces to retrieve the same information. Collection methods return a VARIANT which contains a pointer to an ITCollection interface.
IUnknown Methods | Description |
---|---|
QueryInterface | Returns pointers to supported interfaces. |
AddRef | Increments the reference count. |
Release | Decrements the reference count. |
ITCollection Methods | Description |
---|---|
get_Count | Returns number of items in collection. |
get_Item | Given an index, returns an item in the collection. |
get__NewEnum | Returns an enumerator for the collection. |