Reference Guide
interface IParamGroups
The interface to a collection of parameter groups. Each product component has one collection of parameter groups.
Definition
- interface IParamGroups : IDispatch
-
- {
-
-
- [propget]
-
- HRESULT Count([out, retval] long* rval);
-
- [id(0), propget]
-
- HRESULT Item([in] long index, [out, retval] IParamGroup** rval);
- };
-
Descriptions
[propget]
HRESULT Count([out, retval] long* rval); |
The number of available product components. |
[id(0), propget]
HRESULT Item([in] long index,[out, retval] IParamGroup** rval); |
Given an integer, returns one of the product components. |
|