See Also: Declaring Variables, Struct
tDataSourceRow is a structured type used for some members of the cCJGrid and cCJGridDataSource classes.
Struct tDataSourceRow
RowID riID
Boolean bNewRow
Variant vTag
String[] sValue
End_Struct
riId
If applicable, this should contain the RowId of the record.
bNewRow
Used internally, always passed as False.
vTag
An extra tag value – currently not used.
sValue
An array of column values for this row.
Use cCJGridDataSource.pkg
:
tDataSourceRow {variableName}
To declare tDataSourceRow variables, use the name of the type (tDataSourceRow) followed by the variable name.
tDataSourceRow MyDataSourceRow
See struct variables for more details of instantiating struct types.