|
|
|
SftBoxRowColumnHeader.Text Property |
Defines the text displayed in the row/column header.
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 SftBoxRowColumnHeader object.
Text
Defines the text displayed in the row/column header.
Comments
The Text property defines the text displayed in the row/column header.
The alignment of the row/column header text can be defined using the RowColumnHeader.TextHAlign and RowColumnHeader.TextVAlign properties.
The font used for the row/column header text is defined using the Headers.Font property.
The row/column header only supports one single line of text.