accessRow(row: Integer): JadeTableRow;
The accessRow method of the Table class returns a reference to the
Storing a reference to a returned row causes problems unless you take a copy of that row.
Your logic must delete cloned rows.
The code fragment in the following example shows the use of the accessRow method.
table1.accessRow(3).visible := true; table1.accessedRow.backColor := Blue;
See also the Table class accessCell, accessColumn, and accessSheet methods.