 |
| IXlsFormRadioBox |
 |
COM interface ( getting help with interfaces )
interface IXlsFormRadioBox : IDispatch
{
[id(1),propput] HRESULT Label([in]BSTR label);
[id(1),propget] HRESULT Label([out, retval]BSTR* label);
[id(2),propput] HRESULT RichLabel([in]IXlsRichLabel* rl);
[id(3),propget] HRESULT AlternativeText([out, retval]BSTR* text);
[id(3),propput] HRESULT AlternativeText([in]BSTR text);
[id(4),propput] HRESULT VBAMacro([in]BSTR macro);
[id(4),propget] HRESULT VBAMacro([out, retval]BSTR* macro);
[id(5),propput] HRESULT Checked([in]BOOL b);
[id(5),propget] HRESULT Checked([out, retval]BOOL* b);
[id(6),propput] HRESULT LinkedCell([in]BSTR formula);
[id(6),propget] HRESULT LinkedCell([out, retval]BSTR* formula);
[id(7),propget] HRESULT Name([out, retval]BSTR* name);
[id(8),propget] HRESULT Patterns([out, retval]IXlsChartPatterns** patterns);
}
HRESULT Label([in]BSTR label);
sets the content of the form radio box.
HRESULT Label([out, retval]BSTR* label);
returns the content of the form radio box.
HRESULT RichLabel([in]IXlsRichLabel* rl);
sets the content of the form radio box using richly formatting labels.
HRESULT AlternativeText([out, retval]BSTR* text);
returns the alternative text. Optional.
HRESULT AlternativeText([in]BSTR text);
sets the alternative text. Optional.
HRESULT VBAMacro([in]BSTR macro);
sets the vba macro name for the form radio box.
HRESULT VBAMacro([out, retval]BSTR* macro);
returns the vba macro name for the form radio box.
HRESULT Checked([in]BOOL b);
sets whether the radio box is checked. Default value is : false.
HRESULT Checked([out, retval]BOOL* b);
returns whether the radio box is checked. Default value is : false.
HRESULT LinkedCell([in]BSTR formula);
sets the linked cell for the form radio box. Usually of the form =RxCy
HRESULT LinkedCell([out, retval]BSTR* formula);
returns the linked cell for the form radio box. Usually of the form =RxCy
HRESULT Name([out, retval]BSTR* name);
returns the name of the form radio box.
HRESULT Patterns([out, retval]IXlsChartPatterns** patterns);
returns the patterns object.