In This Topic
Set the tab information of the workbook
Syntax
'Declaration
Sub SetTabs( _
ByVal As Boolean, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal 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 ,
int ,
int ,
int ,
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