Set the first visible row and column information in the window
Syntax
'Declaration
Sub SetTopLeft( _
ByVal As System.Short, _
ByVal As System.Integer, _
ByVal leftColumn As System.Integer _
)
'Usage
Dim instance As IExcelReader
Dim sheet As System.Short
Dim topRow As System.Integer
Dim leftColumn As System.Integer
instance.SetTopLeft(sheet, topRow, leftColumn)
void SetTopLeft(
System.short ,
System.int ,
System.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