|
|
|
SftTreeItem.DataFloat Property |
Defines the item's application specific floating point value.
Syntax
VB.NET |
Float = object.DataFloat As Single |
||
VB |
Float = object.DataFloat As Single |
||
C#.NET |
float Float = object.DataFloat; |
||
VC++ |
float Float = object->DataFloat;
|
||
C |
HRESULT object->get_DataFloat(float* Float); |
||
Delphi |
Float := object.DataFloat : Single; |
||
VB.NET |
object.DataFloat = Float As Single |
||
VB |
object.DataFloat = Float As Single |
||
C#.NET |
float object.DataFloat = Float; |
||
VC++ |
float object->DataFloat = Float;
|
||
C |
HRESULT object->put_DataFloat(float Float); |
||
Delphi |
object.DataFloat := Float : Single; |
object
A SftTreeItem object.
Float
Defines the item's application specific floating point value.
Comments
The DataFloat property defines the item's application specific floating point value.
The DataFloat property can be used to store an application specific value with an item. Possible uses include storing values used for sorting purposes (see Items.SortDependents method).
Additional properties used to associate an application defined value with an item are Item.Data, Item.DataObject, Item.DataString 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 SftTreeItem Object | Object Hierarchy