Page tree

Versions Compared

Key

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

Excerpt

Shows or hides the vertical scroll bar in the generated workbook.

{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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Property ShowVerticalScrollBar() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle