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