A collection of loops.
More...
List of all members.
Properties |
long | Count [get] |
| The number of entities in this collection.
|
ISkpLoop | Item ([in] long Index) [get] |
| return the Indexth item in the collection.
|
IUnknown | _NewEnum [get] |
| Gets an IEnumVARIANT from the collection.
|
Detailed Description
A collection of loops.
Property Documentation
IUnknown ISkpLoops::_NewEnum [get] |
Gets an IEnumVARIANT from the collection.
This will return an object implementing IEnumVARIANT. Each entry in the IEnumVARIANT will be an ISkpLoop object.
- Return values:
-
| pVal | The IEnumVARIANT interface |
- Returns:
- S_OK : if successful
E_POINTER : if pVal == NULL
E_UNEXPECTED : indicates unexpected internal errors
long ISkpLoops::Count [get] |
The number of entities in this collection.
- Return values:
-
| pVal | the number of entities in this collection |
- Returns:
- S_OK : if successful
E_POINTER : if pVal == NULL
ISkpLoop ISkpLoops::Item([in] long Index) [get] |
return the Indexth item in the collection.
- Parameters:
-
| Index | The 0-based index of the item to return. |
| pVal | The non-NULL return value into which to place the item. |
- Returns:
- S_OK : if successful
E_INVALIDARG : if Index < 0 or >= the size of the collection.
E_POINTER : if pVal is NULL.
E_FAIL: Internal errors.