Spread Windows Forms 15.0
FarPoint.Excel Assembly / FarPoint.Excel Namespace / IExportExcelSheetInfo Interface / GetExportRange Method
The minimum row index.
The maximum row index.
The minimum column index.
The maximum column index.


In This Topic
    GetExportRange Method
    In This Topic
    Get the bound of exporting region of the corresponding Excel sheet.
    Syntax
    'Declaration
     
    
    Sub GetExportRange( _
       ByRef minRowIndex As Integer, _
       ByRef maxRowIndex As Integer, _
       ByRef minColIndex As Integer, _
       ByRef maxColIndex As Integer _
    ) 
    'Usage
     
    
    Dim instance As IExportExcelSheetInfo
    Dim minRowIndex As Integer
    Dim maxRowIndex As Integer
    Dim minColIndex As Integer
    Dim maxColIndex As Integer
     
    instance.GetExportRange(minRowIndex, maxRowIndex, minColIndex, maxColIndex)
    void GetExportRange( 
       out int minRowIndex,
       out int maxRowIndex,
       out int minColIndex,
       out int maxColIndex
    )

    Parameters

    minRowIndex
    The minimum row index.
    maxRowIndex
    The maximum row index.
    minColIndex
    The minimum column index.
    maxColIndex
    The maximum column index.
    See Also