Set the minimum and maximum bounds of the sheet.
Syntax
'Declaration
Sub SetDimensions( _
ByVal As System.Short, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal columnFirst As System.Short, _
ByVal columnLast As System.Short _
)
'Usage
Dim instance As IExcelReader
Dim sheet As System.Short
Dim rowFirst As System.Integer
Dim rowLast As System.Integer
Dim columnFirst As System.Short
Dim columnLast As System.Short
instance.SetDimensions(sheet, rowFirst, rowLast, columnFirst, columnLast)
void SetDimensions(
System.short ,
System.int ,
System.int ,
System.short columnFirst,
System.short columnLast
)
Parameters
- sheet
- The zero based sheet index used to locate the IExcelWorksheet instance
- rowFirst
- The zero based inclusive first row index
- rowLast
- The zero based exclusive last row index
- columnFirst
- The zero based inclusive first column index
- columnLast
- The zero based exclusive last column index
See Also