Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

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

{signature}
{example}{code:csharp|title=C#}

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

          //--- Set ShowGridlines
          ws.ShowGridlines = false;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get ShowGridlines
          Dim showGrid As Boolean = ws.ShowGridlines

          '--- Set ShowGridlines
          ws.ShowGridlines = False
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns whether gridlines should be shown in the worksheet. Gridlines are shown by default.{excerpt}
{signature:C#}
 public boolean ShowGridlines{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property ShowGridlines() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle