column

Type: Integer

Availability: Read or write at any time

The column, row, and sheet properties of the JadeTableCell class define the cell referenced by this object. These properties are set when the Table class accessCell method or the JadeTableSheet class accessCell method is called.

You can also set this property manually, allowing your logic to dynamically modify the cell that is being referenced.

The following example shows the use of the column property.

tableCell := table1.accessCell(2, 10);
counter   := 10;
while counter >= 1 do
    tableCell.column   := counter;
    tableCell.selected := true;
    counter            := counter - 1;
endwhile;