|
|
|
SftBoxCell.DataTag Property |
Defines the cell's application specific variant value.
Syntax
VB.NET |
V = object.DataTag As Object |
||
VB |
V = object.DataTag As Variant |
||
C#.NET |
object V = object.DataTag; |
||
VC++ |
_variant_t V = object->DataTag;
|
||
C |
HRESULT object->get_DataTag(VARIANT* V); |
||
Delphi |
V := object.DataTag : OleVariant; |
||
VB.NET |
object.DataTag = V As Object |
||
VB |
object.DataTag = V As Variant |
||
C#.NET |
object object.DataTag = V; |
||
VC++ |
_variant_t object->DataTag = V;
|
||
C |
HRESULT object->put_DataTag(VARIANT V); |
||
Delphi |
object.DataTag := V : OleVariant; |
object
A SftBoxCell object.
V
Defines the cell's application specific variant value.
Comments
The DataTag property defines the cell's application specific variant value.
The Cell.Data, Cell.DataObject, Cell.DataString properties can be used to store additional application specific data, using other data types (numeric values, objects, strings).
The Cell.DataTag property can be used for sorting purposes using the Items.Sort method or can be located using the Items.FindCellDataTag method.
Additional properties used to associate an application defined value with an item are Item.Data, Item.DataTag and Item.DataObject. These are distinct properties and can be used at the same time.