selected

Type: Boolean

Availability: Read or write at run time

The selected property of the JadeTableElement class accesses the selected status of a Table element, as follows.

For a description of this property, see the Table control selected property.

The code fragment in the following example shows the use of the selected property.

table1.accessCell(2, 3).selected := true; // set selected status of a cell
table1.accessColumn(4).selected := true;  // set selected status of a column
table1.accessRow(6).selected    := true;  // set selected status of a row
if table1.accessSheet(1).selected then    // are all cells selected?