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 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:vb.net}
Public Property FirstDisplayedTab() As Integer
{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}