Sets or returns whether gridlines should be shown in the worksheet. Gridlines are shown by default.

<p> public boolean ShowGridlines{ get; set; }</p>
<p>Public Property ShowGridlines() As Boolean</p>

          //--- Get ShowGridlines
          bool showGrid = ws.ShowGridlines;

          //--- Set ShowGridlines
          ws.ShowGridlines = false;
        
          '--- Get ShowGridlines
          Dim showGrid As Boolean = ws.ShowGridlines

          '--- Set ShowGridlines
          ws.ShowGridlines = False