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 the item's application specific variant value.
Deprecated - Provided for compatibility with earlier versions only - Use Item.DataTag instead
Get
VB.NET | V = object.Tag As Object |
VB | V = object.Tag As Variant |
C#.NET | object V = object.Tag; |
VC++ | _variant_t V = object->Tag; _variant_t V = object->GetTag(); |
C | HRESULT object->get_Tag(VARIANT* V); |
Put
VB.NET | object.Tag = V As Object |
VB | object.Tag = V As Variant |
C#.NET | object object.Tag = V; |
VC++ | _variant_t object->Tag = V; void object->PutTag(const _variant_t& V); |
C | HRESULT object->put_Tag(VARIANT V); |
object
V
Defines the item's application specific variant value.
Deprecated - Provided for compatibility with earlier versions only - Use Item.DataTag instead
The Tag property defines the item's application specific variant value.
The Item.DataTag property can be used for sorting purposes using the Items.Sort method or can be located using the Items.FindDataTag method.
The Item.Data and Item.DataObject properties can be used to store additional application specific data, using other data types (numeric values, objects).
Additional properties used to associate an application defined value with a cell are Cell.Data, Cell.DataString, Cell.DataTag and Cell.DataObject. These are distinct properties and can be used at the same time.
See Also SftBoxItem Object | Object Hierarchy