|
|
|
SftBoxRowHeader.Text Property |
Defines the row header's text.
Syntax
VB.NET |
String = object.Text As String |
||
VB |
String = object.Text As String |
||
C#.NET |
string String = object.Text; |
||
VC++ |
_bstr_t String = object->Text;
|
||
C |
HRESULT object->get_Text(BSTR* String); |
||
Delphi |
String := object.Text : WideString; |
||
VB.NET |
object.Text = String As String |
||
VB |
object.Text = String As String |
||
C#.NET |
string object.Text = String; |
||
VC++ |
_bstr_t object->Text = String;
|
||
C |
HRESULT object->put_Text(BSTR String); |
||
Delphi |
object.Text := String : WideString; |
object
A SftBoxRowHeader object.
String
Defines the row header's text.
Comments
The Text property defines the row header's text.
The alignment of row header text for all row headers can be defined using the RowHeaders.Align property.
Row headers can support multiple text lines (see RowHeaders.Lines) by using new-line characters (CR-LF) to start a new line. Word-wrap is not supported.
The font used for the row header text is defined using the RowHeaders.Font property.
A row header can only contain a single line of text.