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
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Defines an item's application specific string value.
Deprecated - Provided for compatibility with earlier versions only - Use Item.DataString instead
Get
VB.NET | Text = object.get_ItemDataString(ByVal ItemIndex As Integer) As String |
VB | Text = object.ItemDataString(ByVal ItemIndex As Long) As String |
C#.NET | string Text = object.get_ItemDataString(int ItemIndex); |
VC++ | _bstr_t Text = object->ItemDataString[long ItemIndex]; _bstr_t Text = object->GetItemDataString(long ItemIndex); |
C | HRESULT object->get_ItemDataString(long ItemIndex, BSTR* Text); |
Put
VB.NET | object.set_ItemDataString(ByVal ItemIndex As Integer, ByVal Text As String) |
VB | object.ItemDataString(ByVal ItemIndex As Long) = Text As String |
C#.NET | void object.set_ItemDataString(int ItemIndex, string Text); |
VC++ | _bstr_t object->ItemDataString[long ItemIndex] = Text; void object->PutItemDataString(long ItemIndex, _bstr_t Text); |
C | HRESULT object->put_ItemDataString(long ItemIndex, BSTR Text); |
object
ItemIndex
The zero-based item index.
Text
Defines an item's application specific string value.
Deprecated - Provided for compatibility with earlier versions only - Use Item.DataString instead
The ItemDataString property defines an item's application specific string value.
Additional properties used to associate an application defined value with an item are Item.Data, Item.DataFloat, Item.DataObject 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 SftTree Object | Object Hierarchy