Manager for all the option providers.
More...
List of all members.
Properties |
ISkpOptionsProvider | Item ([in] VARIANT IndexOrName) [get] |
| return the item in the collection with the given index or name.
|
long | Count [get] |
| The number of option providers in this collection.
|
IUnknown | _NewEnum [get] |
| Gets an IEnumVARIANT from the collection.
|
Detailed Description
Manager for all the option providers.
This interface is served up by the ISkpDocument.
- See also:
- ISkpOptionsProvider
-
ISkpDocument
Property Documentation
IUnknown ISkpOptionsManager::_NewEnum [get] |
Gets an IEnumVARIANT from the collection.
- Return values:
-
| pVal | The IEnumVARIANT interface |
- Returns:
- S_OK : if successful
E_POINTER : if pVal == NULL
E_UNEXPECTED : indicates unexpected internal errors
long ISkpOptionsManager::Count [get] |
The number of option providers in this collection.
- Return values:
-
| pVal | the number of option providers in this collection |
- Returns:
- S_OK : if successful
E_POINTER : if pVal == NULL
return the item in the collection with the given index or name.
- Parameters:
-
| IndexOrName | The 0-based index or name 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 IndexOrName < 0 or >= the size of the collection or if the name is not found in the collection
E_POINTER : if pVal is NULL.
E_FAIL: Internal errors.