Spread WPF 17
GrapeCity.Excel Namespace / IExcelReader Interface / SetTopLeft Method
The zero based sheet index used to locate the IExcelWorksheet instance
Top row visible in the window
Leftmost column visible in the window


In This Topic
    SetTopLeft Method (IExcelReader)
    In This Topic
    Set the first visible row and column information in the window
    Syntax
    'Declaration
     
    Sub SetTopLeft( _
       ByVal sheet As Short, _
       ByVal topRow As Integer, _
       ByVal leftColumn As Integer _
    ) 
    'Usage
     
    Dim instance As IExcelReader
    Dim sheet As Short
    Dim topRow As Integer
    Dim leftColumn As Integer
     
    instance.SetTopLeft(sheet, topRow, leftColumn)
    void SetTopLeft( 
       short sheet,
       int topRow,
       int leftColumn
    )

    Parameters

    sheet
    The zero based sheet index used to locate the IExcelWorksheet instance
    topRow
    Top row visible in the window
    leftColumn
    Leftmost column visible in the window
    See Also