|
|
|
SftTree.RowColText Property |
Defines the text displayed in the row/column header.
Deprecated - Provided for compatibility with earlier versions only - Use RowColumnHeader.Text instead
Syntax
VB.NET |
Text = object.RowColText As String |
||
VB |
Text = object.RowColText As String |
||
C#.NET |
string Text = object.RowColText; |
||
VC++ |
_bstr_t Text = object->RowColText;
|
||
C |
HRESULT object->get_RowColText(BSTR* Text); |
||
Delphi |
Text := object.RowColText : WideString; |
||
VB.NET |
object.RowColText = Text As String |
||
VB |
object.RowColText = Text As String |
||
C#.NET |
string object.RowColText = Text; |
||
VC++ |
_bstr_t object->RowColText = Text;
|
||
C |
HRESULT object->put_RowColText(BSTR Text); |
||
Delphi |
object.RowColText := Text : WideString; |
object
A SftTree object.
Text
Defines the text displayed in the row/column header.
Comments
Deprecated - Provided for compatibility with earlier versions only - Use RowColumnHeader.Text instead
The RowColText 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 SftTree Object | Object Hierarchy