A collection of ISkpEdge objects.
More...
List of all members.
Properties |
long | Count [get] |
| [propget] The number of entities in this collection
|
ISkpEdge | Item ([in] long Index) [get] |
| [propget] return the Indexth item in the collection.
|
IUnknown | _NewEnum [get] |
| [propget] Gets an IEnumVARIANT from the collection
|
Detailed Description
A collection of ISkpEdge objects.
Property Documentation
IUnknown ISkpEdges::_NewEnum [get] |
[propget] Gets an IEnumVARIANT from the collection
This will return an object implementing IEnumVARIANT. Each entry in the IEnumVARIANT will be an ISkpEdge object.
- Return values:
-
| pVal | The IEnumVARIANT interface |
- Returns:
- S_OK : if successful
E_POINTER : if pVal == NULL
E_UNEXPECTED : indicates unexpected internal errors
long ISkpEdges::Count [get] |
[propget] 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
ISkpEdge ISkpEdges::Item([in] long Index) [get] |
[propget] 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.