Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
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:vb.net}
Public Property ShowGridlines() As Boolean
{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}