Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / LayoutManager Class / GetPane Method
An integer value indicates the top row index of the cell.
An integer value indicates the left column index of the cell.
The active pane's row index.
The active pane's column index.


In This Topic
    GetPane Method
    In This Topic
    Gets the pane from the specified cell.
    Syntax
    'Declaration
     
    
    Public Sub GetPane( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByRef paneRow As Integer, _
       ByRef paneColumn As Integer _
    ) 
    'Usage
     
    
    Dim instance As LayoutManager
    Dim row As Integer
    Dim column As Integer
    Dim paneRow As Integer
    Dim paneColumn As Integer
     
    instance.GetPane(row, column, paneRow, paneColumn)
    public void GetPane( 
       int row,
       int column,
       out int paneRow,
       out int paneColumn
    )

    Parameters

    row
    An integer value indicates the top row index of the cell.
    column
    An integer value indicates the left column index of the cell.
    paneRow
    The active pane's row index.
    paneColumn
    The active pane's column index.
    See Also