|
|
|
SftTreeRowColumnHeader.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 SftTreeRowColumnHeader 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 row/column header supports multiple text lines by using new-line characters (CR-LF) to start a new line. Word-wrap is not supported.
See Also SftTreeRowColumnHeader Object | Object Hierarchy