|
|
|
|
|
SftOptionsHeader.Text Property |
Defines the header's text.
Syntax
|
VB.NET |
Text = object.Text As String |
||
|
VB |
Text = object.Text As String |
||
|
C#.NET |
string Text = object.Text; |
||
|
VC++ |
_bstr_t Text = object->Text;
|
||
|
C |
HRESULT object->get_Text(BSTR* Text); |
||
|
Delphi |
Text := object.Text : WideString; |
||
|
VB.NET |
object.Text = Text As String |
||
|
VB |
object.Text = Text As String |
||
|
C#.NET |
string object.Text = Text; |
||
|
VC++ |
_bstr_t object->Text = Text;
|
||
|
C |
HRESULT object->put_Text(BSTR Text); |
||
|
Delphi |
object.Text := Text : WideString; |
||
object
A SftOptionsHeader object.
Text
Defines the header's text.
Comments
The Text property defines the header's text.
The header text can consist of one line of text only.
Example
SftOptions1.Header.Align = constSftOptionsCenter SftOptions1.Header.Style = headerSftOptionsButton SftOptions1.Header.Text = "Options" SftOptions1.Header.ToolTip = "ToolTip for these options" SftOptions1.Add "", "Topic1", "Sample Topic", entrySftOptionsTopic, "", "", Nothing, "", "", "", "" SftOptions1.InitializationComplete
See Also SftOptionsHeader Object | Object Hierarchy