Reference Guide
interface IProducts
The interface to the collection of product components contained within a product component library.
Definition
- interface IProducts : IDispatch
-
- {
-
-
- [propget]
-
- HRESULT Count([out, retval] long* rval);
-
- [id(0), propget]
-
- HRESULT Item([in] const VARIANT* index, [out, retval] IProduct** rval);
- };
-
Descriptions
[propget]
HRESULT Count([out, retval] long* rval); |
The number of product components in the library.
|
[id(0), propget]
HRESULT Item([in] const VARIANT* index, [out, retval] IProduct** rval); |
Given an integer or string index, returns one of the product components.
|
|