Get the tab settings of the current workbook
Syntax
'Declaration
Function GetTabs( _
ByRef As System.Boolean, _
ByRef As System.Integer, _
ByRef As System.Integer, _
ByRef As System.Integer, _
ByRef As System.Integer _
) As System.Boolean
'Usage
Dim instance As IExcelWriter
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
Dim value As System.Boolean
value = instance.GetTabs(showTabs, selectedTabIndex, firstDisplayedTabIndex, selectedTabCount, tabRatio)
System.bool GetTabs(
ref System.bool ,
ref System.int ,
ref System.int ,
ref System.int ,
ref 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