selected
Type: Boolean
Availability: Read or write at run time
The selected property of the JadeTableElement class accesses the
-
Retrieving the selected status
-
JadeTableCell class selected property returns whether the referenced cell is selected.
-
JadeTableColumn class selected property returns whether all non-fixed cells of the column are selected.
-
JadeTableRow class selected property returns whether all non-fixed cells of the row are selected.
-
JadeTableSheet class selected property returns whether all non-fixed cells of the whole sheet are selected.
-
-
Setting the selected status
-
JadeTableCell class selected property sets whether the referenced cell is selected.
-
JadeTableColumn class selected property sets the selected status of all non-fixed cells in the column.
-
JadeTableRow class selected property sets the selected status of all non-fixed cells in the row.
-
JadeTableSheet class selected property sets the selected status of all non-fixed cells in the whole sheet.
-
For a description of this property, see the
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?