SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTree/NET 2.0 - Tree Control
Defines the cell's text.
Get
| 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; _bstr_t String = object->GetText(); |
| C | HRESULT object->get_Text(BSTR* String); |
Put
| 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; void object->PutText(_bstr_t String); |
| C | HRESULT object->put_Text(BSTR String); |
object
A SftTreeCell object.
String
Defines the cell's text.
The Text property defines the cell's text.
The Items.Add, Items.Insert and Items.InsertAfter methods add new items. The text specified when adding new items always defines the cell text for the first or only column (column 0).
The cell text may contain new-line characters (CR-LF) if multi-line cell text is enabled (see Items.Lines and Column.CellMultiline).
If the cell text is empty, the cell in the preceding column may merge into the empty cell, based on the Column.MergeInto property settings.
The default cell text alignment for a column is defined using the Column.CellHAlign and Column.CellVAlign properties. A cell can override the default using the Cell.TextHAlign and Cell.TextVAlign properties.
See Also SftTreeCell Object | Object Hierarchy
