Sets or returns the first worksheet tab to display in the tab bar at the bottom of the workbook window.

<table class="wysiwyg-macro" data-macro-name="unmigrated-wiki-markup" style="background-image: url(/plugins/servlet/confluence/placeholder/macro-heading?definition=e3VubWlncmF0ZWQtd2lraS1tYXJrdXB9&amp;locale=en_GB&amp;version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre>
 public int FirstDisplayedTab{ get; set; }
</pre></td></tr></table>
<p>Public Property FirstDisplayedTab() As Integer</p>

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

          //--- Set the FirstDisplayedTab value of the workbook
          wb.FirstDisplayedTab = 0;
        

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

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