Spread WPF 17
GrapeCity.Excel Namespace / IExcelReader Interface / SetTabs Method
A flag indicate whether show workbook tabs or not
Zero based index of the selected workbook tab
Zero based index of the first displayed workbook tab
Number of workbook tabs that are selected
Ratio of the width of the workbook tabs to the width of the horizontal scroll bar.


In This Topic
    SetTabs Method
    In This Topic
    Set the tab information of the workbook
    Syntax
    'Declaration
     
    Sub SetTabs( _
       ByVal showTabs As Boolean, _
       ByVal selectedTabIndex As Integer, _
       ByVal firstDisplayedTabIndex As Integer, _
       ByVal selectedTabCount As Integer, _
       ByVal tabRatio As Integer _
    ) 
    'Usage
     
    Dim instance As IExcelReader
    Dim showTabs As Boolean
    Dim selectedTabIndex As Integer
    Dim firstDisplayedTabIndex As Integer
    Dim selectedTabCount As Integer
    Dim tabRatio As Integer
     
    instance.SetTabs(showTabs, selectedTabIndex, firstDisplayedTabIndex, selectedTabCount, tabRatio)
    void SetTabs( 
       bool showTabs,
       int selectedTabIndex,
       int firstDisplayedTabIndex,
       int selectedTabCount,
       int tabRatio
    )

    Parameters

    showTabs
    A flag indicate whether show workbook tabs or not
    selectedTabIndex
    Zero based index of the selected workbook tab
    firstDisplayedTabIndex
    Zero based index of the first displayed workbook tab
    selectedTabCount
    Number of workbook tabs that are selected
    tabRatio
    Ratio of the width of the workbook tabs to the width of the horizontal scroll bar.
    See Also