Type: Boolean
Availability: Read or write at any time
The gridBottom property of the JadeTableElement class specifies whether a grid line is drawn along the bottom edge of cells in a table element. If the
The code fragment in the following example shows the use of the gridBottom property to suppress the printing of horizontal grid lines for the sheet.
table1.accessSheet(1).gridBottom := false;
The value of the gridBottom property for a cell, which is true by default, can be changed through code at increasingly more-specific levels: JadeTableSheet, JadeTableRow, JadeTableColumn, and JadeTableCell. Where there are conflicting changes, the most-specific change determines the resulting value of the property.
The code fragment in the following example shows a change at the JadeTableCell level overriding a change at the JadeTableSheet level.
table1.accessCell(3,3).gridBottom := true; table1.accessSheet(1).gridBottom := false;
When the value of the