Spread WPF 17
GrapeCity.Excel Namespace / IExcelWorksheet Interface / GetTopLeft Method
The zero-based row index of the top left cell
The zero-based column index of the top left cell


In This Topic
    GetTopLeft Method (IExcelWorksheet)
    In This Topic
    Get the location of the top left visible cell in the current sheet
    Syntax
    'Declaration
     
    Sub GetTopLeft( _
       ByRef top As Integer, _
       ByRef left As Integer _
    ) 
    'Usage
     
    Dim instance As IExcelWorksheet
    Dim top As Integer
    Dim left As Integer
     
    instance.GetTopLeft(top, left)
    void GetTopLeft( 
       ref int top,
       ref int left
    )

    Parameters

    top
    The zero-based row index of the top left cell
    left
    The zero-based column index of the top left cell
    See Also