accessedSheet
Type: JadeTableSheet
Availability: Read or write at run time only
The accessedSheet property of the Table class contains a reference to the sheet returned by the accessSheet method of the Table class.
The following example shows the use of the accessedSheet property.
begin table1.accessSheet(1); if chkboxFontBold.value = true then table1.accessedSheet.fontBold := true; else table1.accessedSheet.fontBold := false; endif; end;
See also the Table class accessedCell, accessedColumn, and accessedRow properties.