Spread WPF 17
GrapeCity.Excel Namespace / IExcelWriter Interface / GetDimensions Method
The zero based sheet index used to locate the IExcelWorksheet instance
Number of rows used in the sheet
Number of columns used in the sheet


In This Topic
    GetDimensions Method
    In This Topic
    Get the minimum and maximum bounds of the sheet.
    Syntax
    'Declaration
     
    Sub GetDimensions( _
       ByVal sheet As Short, _
       ByRef row As Integer, _
       ByRef column As Integer _
    ) 
    'Usage
     
    Dim instance As IExcelWriter
    Dim sheet As Short
    Dim row As Integer
    Dim column As Integer
     
    instance.GetDimensions(sheet, row, column)
    void GetDimensions( 
       short sheet,
       ref int row,
       ref 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