accessRow

accessRow(row: Integer): JadeTableRow;

The accessRow method of the Table class returns a reference to the JadeTableRow object for the requested row (specified in the row parameter) for the current topSheet of the table. Accessing a row using this method or the JadeTableSheet class accessRow method sets the corresponding Table class accessedRow property to the returned row so that it can be used for subsequent access.

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.