|
Reference Guide
interface IControllers
The interface to the collection of controller chips supported by a controller component.
Definition
- interface IControllers : IDispatch
-
- {
-
-
- [propget]
-
- HRESULT Count([out, retval] long* rval);
-
- [id(0), propget]
-
- HRESULT Item([in] const VARIANT* index, [out, retval] IControllerInfo** rval);
- };
-
Descriptions
[propget, helpstring("The number of available product components.")]
HRESULT Count([out, retval] long* rval); |
The number of available product components. |
[id(0), propget]
HRESULT Item([in] const VARIANT* index,[out, retval] IControllerInfo** rval); |
Given an integer or string index, returns one of the product components. |
|