Get the minimum and maximum bounds of the sheet.
Syntax
'Declaration
Sub GetDimensions( _
ByVal As System.Short, _
ByRef As System.Integer, _
ByRef column As System.Integer _
)
'Usage
Dim instance As IExcelWriter
Dim sheet As System.Short
Dim row As System.Integer
Dim column As System.Integer
instance.GetDimensions(sheet, row, column)
void GetDimensions(
System.short ,
ref System.int ,
ref System.int column
)
Parameters
- sheet
- The zero based sheet index used to locate the IExcelWorksheet instance
- row
- Number of rows used in the sheet
- column
- Number of columns used in the sheet
See Also