Spread WPF 17
GrapeCity.Excel Namespace / IExcelWriter Interface / GetPane Method
the zero based sheet index used to locate the IExcelWorksheet instance
set the value for the horizontal position of the split, 0 if none
set the value for the vertical position of the split, 0 if none
set the count of top visible rows in the bottom pane
set the count of leftmost visible columns in the right pane
the active pane number


In This Topic
    GetPane Method
    In This Topic
    Gets the number and position of unfrozen panes in a window
    Syntax
    'Declaration
     
    Sub GetPane( _
       ByVal sheet As Short, _
       ByRef horizontalPosition As Integer, _
       ByRef verticalPosition As Integer, _
       ByRef topVisibleRow As Integer, _
       ByRef leftmostVisibleColumn As Integer, _
       ByRef paneIndex As Integer _
    ) 
    'Usage
     
    Dim instance As IExcelWriter
    Dim sheet As Short
    Dim horizontalPosition As Integer
    Dim verticalPosition As Integer
    Dim topVisibleRow As Integer
    Dim leftmostVisibleColumn As Integer
    Dim paneIndex As Integer
     
    instance.GetPane(sheet, horizontalPosition, verticalPosition, topVisibleRow, leftmostVisibleColumn, paneIndex)
    void GetPane( 
       short sheet,
       ref int horizontalPosition,
       ref int verticalPosition,
       ref int topVisibleRow,
       ref int leftmostVisibleColumn,
       ref int paneIndex
    )

    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