See Also: Declaring Variables, Struct
tComboItemData is a structured type used for some members of the cCJGridColumn and cDbCJGridColumn classes.
Struct tComboItemData
String sCaption
Integer iData
End_Struct
sCaption
The value displayed in the combo list.
iData
A unique numeric value representing the combo item. These values are values are used internally by the CodeJock grid control's ReportRecordItemConstraints object.
Use cCJGridColumn.pkg
:
tComboItemData {variableName}
or
Use cDbCJGridColumn.pkg
:
tComboItemData {variableName}
To declare tComboItemData variables, use the name of the type (tComboItemData) followed by the variable name.
tComboItemData MyComboItemData
See struct variables for more details of instantiating struct types.