|
TCLBVariableLinkTypes Enumeration
|
|
|
Description
|
|
|
Tcl variable link types.
Linked string variables are supported by using special handles.
These special handles point to strings that can be retreived using the GetStringValue method and changed by the SetStringValue method.
One of these strings can be created by specifying a value of TCLB_INVALID_KEY as the initial value of the "Handle" parameter in a call to the SetStringValue method.
|
|
|
Values
|
|
|
TCL_LINK_INT
|
Variable is an integer.
|
|
TCL_LINK_DOUBLE
|
Variable is a double.
|
|
TCL_LINK_BOOLEAN
|
Variable is a boolean.
|
|
TCL_LINK_STRING
|
Variable is a string.
|
|
TCL_LINK_WIDE_INT
|
Variable is a wide integer.
|
|
TCL_LINK_CHAR
|
Variable is a character.
|
|
TCL_LINK_UCHAR
|
Variable is an unsigned character.
|
|
TCL_LINK_SHORT
|
Variable is a short integer.
|
|
TCL_LINK_USHORT
|
Variable is an unsigned short integer.
|
|
TCL_LINK_UINT
|
Variable is an unsigned integer.
|
|
TCL_LINK_LONG
|
Variable is a long integer.
|
|
TCL_LINK_ULONG
|
Variable is an unsigned long integer.
|
|
TCL_LINK_FLOAT
|
Variable is a float.
|
|
TCL_LINK_WIDE_UINT
|
Variable is a wide unsigned integer.
|
|
TCL_LINK_READ_ONLY
|
Variable is read-only from the Tcl side of the link.
|