row

Type: Integer

Availability: Read or write at any time

The row property and the sheet property of the JadeTableRow class define the row referenced by this object. These properties are set when the Table class accessRow method or the JadeTableSheet class accessRow method is called.

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

tableRow := table1.accessRow(table1.rows);
counter  := table1.rows;
while counter >= 1 do
    tableRow.row     := counter;
    tableRow.visible := true;
    counter          := counter - 1;
endwhile;