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
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
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