|
|
|
SftBoxColumn.Data Property |
Defines the column'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 SftBoxColumn object.
Number
Defines the column's application specific numeric value.
Comments
The Data property defines the column's application specific numeric value.
The Column.DataObject and Column.DataTag properties can be used to store additional application specific data, using other data types (objects, variants).