accessCell

accessCell(row:    Integer;
           column: Integer): JadeTableCell updating;

The accessCell method of the JadeTableSheet class returns a reference to the JadeTableCell object for the requested row and column on that sheet.

This method also sets the Table class accessedCell property to the returned cell, allowing subsequent reuse of that object.

Storing a reference to a returned cell causes problems unless you take a copy of that column, as there is one JadeTableCell object for each Table control only.

Your logic must delete cloned cells.

The code fragment in the following example shows the use of the accessCell method.

table1.accessSheet(2).accessCell(4, 5).text := "test";

See also the JadeTableSheet class accessColumn and accessRow methods and the Table class accessCell, accessColumn, accessRow, and accessSheet methods.