|
|
|
SftBoxCell.Data Property |
Defines the cell's application specific numeric value.
Syntax
VB.NET |
Number = object.Data As Integer |
||
VB |
Number = object.Data As Long |
||
C#.NET |
int Number = object.Data; |
||
VC++ |
long Number = object->Data;
|
||
C |
HRESULT object->get_Data(long* Number); |
||
Delphi |
Number := object.Data : Integer; |
||
VB.NET |
object.Data = Number As Integer |
||
VB |
object.Data = Number As Long |
||
C#.NET |
int object.Data = Number; |
||
VC++ |
long object->Data = Number;
|
||
C |
HRESULT object->put_Data(long Number); |
||
Delphi |
object.Data := Number : Integer; |
object
A SftBoxCell object.
Number
Defines the cell's application specific numeric value. This data is application defined, but is also used by the Items.AddFontNames, AddFontStyles, AddFontSizes methods.
Comments
The Data property defines the cell's application specific numeric value.
The Items.AddFontNames, Items.AddFontStyles, Items.AddFontSizes methods store additional information in the Data property for each item added.
The Data property can be used for sorting purposes using the Items.Sort method or can be located using the Items.FindCellData method.
The Cell.DataString, Cell.DataObject, Cell.DataTag properties can be used to store additional application specific data, using other data types (strings, objects, variants).
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.