row

Type: Integer

Availability: Read or write at any time

The row, column, 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, as shown in the following example.

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