|
|
|
SftTreeCell.DataString Property |
Defines the cell's application specific string value.
Syntax
VB.NET |
String = object.DataString As String |
||
VB |
String = object.DataString As String |
||
C#.NET |
string String = object.DataString; |
||
VC++ |
_bstr_t String = object->DataString;
|
||
C |
HRESULT object->get_DataString(BSTR* String); |
||
Delphi |
String := object.DataString : WideString; |
||
VB.NET |
object.DataString = String As String |
||
VB |
object.DataString = String As String |
||
C#.NET |
string object.DataString = String; |
||
VC++ |
_bstr_t object->DataString = String;
|
||
C |
HRESULT object->put_DataString(BSTR String); |
||
Delphi |
object.DataString := String : WideString; |
object
A SftTreeCell object.
String
Defines the cell's application specific string value.
Comments
The DataString property defines the cell's application specific string value.
The Cell.Data, Cell.DataObject, Cell.DataTag properties can be used to store additional application specific data, using other data types (long, objects, variants).
Additional properties used to associate an application defined value with an item are Item.Data, Item.DataTag, Item.DataObject, Item.DataFloat and Item.DataString. These are distinct properties and can be used at the same time.
See Also SftTreeCell Object | Object Hierarchy