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 the first worksheet tab to display in the tab bar at the bottom of the workbook window.

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

          //--- Get the FirstDisplayedTab value of the workbook
          int firstTab = wb.FirstDisplayedTab;

          //--- Set the FirstDisplayedTab value of the workbook
          wb.FirstDisplayedTab = 0;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get the FirstDisplayedTab value of the workbook
          Dim firstTab As Integer = wb.FirstDisplayedTab

          '--- Set the FirstDisplayedTab value of the workbook
          wb.FirstDisplayedTab = 0
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the first worksheet tab to display in the tab bar at the bottom of the workbook window.{excerpt}
{signature:C#}
 public int FirstDisplayedTab{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property FirstDisplayedTab() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle