グリッド線が表示されている場合は True です。読み取り/書き込み Boolean
構文
property DisplayGridLines: boolean;
備考
この例では、1 枚目のシートのグリッド線の表示を切り替えます
使用例
This example toggles the display of gridlines in the first sheet
Workbook.Sheets[1].DisplayGridlines := not(Workbook.Sheets[1].DisplayGridlines);