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 item's application specific numeric value.
Get
| VB.NET | Number = object.Data As Integer |
| VB | Number = object.Data As Long |
| C#.NET | int Number = object.Data; |
| VC++ | long Number = object->Data; long Number = object->GetData(); |
| C | HRESULT object->get_Data(long* Number); |
Put
| VB.NET | object.Data = Number As Integer |
| VB | object.Data = Number As Long |
| C#.NET | int object.Data = Number; |
| VC++ | long object->Data = Number; void object->PutData(long Number); |
| C | HRESULT object->put_Data(long Number); |
object
A SftTreeItem object.
Number
Defines the item's application specific numeric value.
The Data property defines the item's application specific numeric value.
The Data property can be used to store an application specific value with an item. Possible uses include storing values used for sorting purposes (see Items.SortDependents method).
Additional properties used to associate an application defined value with an item are Item.DataFloat, Item.DataObject, Item.DataString and Item.DataTag. These are distinct properties and can be used at the same time.
Cell related data can be saved using the Cell.Data, Cell.DataObject, Cell.DataString and Cell.DataTag properties.
See Also SftTreeItem Object | Object Hierarchy
