Reference Guide
interface IParamGroup
Parameter group objects are associated with product components, and assist the Interactive Data Sheet with grouping controls onto tabs.
Definition
- interface IParamGroup : IDispatch
-
- {
-
-
- [id(0), propget]
-
- HRESULT Name([out, retval] BSTR* rval);
-
- [propget]
-
- HRESULT Key([out, retval] long* rval);
-
- [propget]
-
- HRESULT Subgroups([out, retval] ITextList** rval);
- };
-
Descriptions
[id(0), propget]
HRESULT Name([out, retval] BSTR* rval); |
The name of the group. |
[propget]
HRESULT Key([out, retval] long* rval); |
A number associated with the group. In the Interactive Data Sheet and the demo product component libraries included with ARKbase, this is the layout number. The layout number tells the Interactive Data Sheet which code to use to layout the controls on the tab. |
[propget]
HRESULT Subgroups([out, retval] ITextList** rval); |
The list of subgroups. |
|