Gets the number and position of unfrozen panes in a window
Syntax
'Declaration
Sub GetPane( _
ByVal As System.Short, _
ByRef As System.Integer, _
ByRef As System.Integer, _
ByRef As System.Integer, _
ByRef leftmostVisibleColumn As System.Integer, _
ByRef As System.Integer _
)
'Usage
Dim instance As IExcelWriter
Dim sheet As System.Short
Dim horizontalPosition As System.Integer
Dim verticalPosition As System.Integer
Dim topVisibleRow As System.Integer
Dim leftmostVisibleColumn As System.Integer
Dim paneIndex As System.Integer
instance.GetPane(sheet, horizontalPosition, verticalPosition, topVisibleRow, leftmostVisibleColumn, paneIndex)
void GetPane(
System.short ,
ref System.int ,
ref System.int ,
ref System.int ,
ref System.int leftmostVisibleColumn,
ref System.int
)
Parameters
- sheet
- the zero based sheet index used to locate the IExcelWorksheet instance
- horizontalPosition
- set the value for the horizontal position of the split, 0 if none
- verticalPosition
- set the value for the vertical position of the split, 0 if none
- topVisibleRow
- set the count of top visible rows in the bottom pane
- leftmostVisibleColumn
- set the count of leftmost visible columns in the right pane
- paneIndex
- the active pane number
See Also