accessColumn(column: Integer): JadeTableColumn;
The accessColumn method of the Table class returns a reference to the
Accessing a column using this method or the
The code fragment in the following example shows the use of the accessColumn method.
table1.accessColumn(2).alignment := 2; table1.accessedColumn.backColor := Blue;
Storing a reference to a returned column causes problems unless you take a copy of that column.
Your logic must delete cloned columns.
See also the Table class accessCell, accessRow, and accessSheet methods.