Gets the first visible row and column information in the window
Syntax
'Declaration
Function GetTopLeft( _
ByVal As System.Short, _
ByRef As System.Integer, _
ByRef leftColumn As System.Integer _
) As System.Boolean
'Usage
Dim instance As IExcelWriter
Dim sheet As System.Short
Dim topRow As System.Integer
Dim leftColumn As System.Integer
Dim value As System.Boolean
value = instance.GetTopLeft(sheet, topRow, leftColumn)
System.bool GetTopLeft(
System.short ,
ref System.int ,
ref 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