Skip to content

tDataSourceRow

See Also: Declaring Variables, Struct

Purpose

tDataSourceRow is a structured type used for some members of the cCJGrid and cCJGridDataSource classes.

Type Declaration

Struct tDataSourceRow
    RowID riID
    Boolean bNewRow
    Variant vTag
    String[] sValue
End_Struct

Struct Members

  • 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.

Syntax

Use cCJGridDataSource.pkg
:
tDataSourceRow {variableName}

Declaring Variables

To declare tDataSourceRow variables, use the name of the type (tDataSourceRow) followed by the variable name.

tDataSourceRow MyDataSourceRow

See struct variables for more details on instantiating struct types.