column

Type: Integer

Availability: Read or write at any time

The column and sheet properties of the JadeTableColumn class define the column referenced by this object. These properties are set when the Table class accessColumn method or the JadeTableSheet class accessColumn method is called.

You can also set this property manually, allowing your logic to dynamically modify the column that is being referenced, as shown in the following example.

tableColumn := table1.accessColumn(10);
counter     := 10;
while counter >= 1 do
    tableColumn.column    := counter;
    tableColumn.inputType := Table.InputType_Numeric;
    counter               := counter - 1;
endwhile;