Set the tab information of the workbook
Syntax
'Declaration
Sub SetTabs( _
ByVal As System.Boolean, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer _
)
'Usage
Dim instance As IExcelReader
Dim showTabs As System.Boolean
Dim selectedTabIndex As System.Integer
Dim firstDisplayedTabIndex As System.Integer
Dim selectedTabCount As System.Integer
Dim tabRatio As System.Integer
instance.SetTabs(showTabs, selectedTabIndex, firstDisplayedTabIndex, selectedTabCount, tabRatio)
void SetTabs(
System.bool ,
System.int ,
System.int ,
System.int ,
System.int
)
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