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}Shows or hides the vertical scroll bar in the generated workbook.{excerpt}
{signature:C#}
 public boolean ShowVerticalScrollBar{ get; set; }
{signature}{signature:vb.net}
Public Property ShowVerticalScrollBar() As Boolean
{signature}
{example}{code:csharp|title=C#}

          //--- Get the ShowVerticalScrollBar property
          bool showVertScroll = wb.ShowVerticalScrollBar;

          //--- Set the ShowVerticalScrollBar property
          wb.ShowVerticalScrollBar = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Get the ShowVerticalScrollBar property
          Dim showVertScroll As Boolean = wb.ShowVerticalScrollBar

          '--- Set the ShowVerticalScrollBar property
          wb.ShowVertialScrollBar = True
        {code}

{example}