Spread WPF 17
GrapeCity.Excel Namespace / IExcelWriter Interface / GetCells Method
the zero based sheet index used to locate the IExcelWorksheet instance
A collection of IExcelCell instances used to represents cells used in the sheet


In This Topic
    GetCells Method
    In This Topic
    Get all non empty cells used in the specified sheet.
    Syntax
    'Declaration
     
    Function GetCells( _
       ByVal sheet As Short, _
       ByVal cells As List(Of IExcelCell) _
    ) As Boolean
    'Usage
     
    Dim instance As IExcelWriter
    Dim sheet As Short
    Dim cells As List(Of IExcelCell)
    Dim value As Boolean
     
    value = instance.GetCells(sheet, cells)
    bool GetCells( 
       short sheet,
       List<IExcelCell> cells
    )

    Parameters

    sheet
    the zero based sheet index used to locate the IExcelWorksheet instance
    cells
    A collection of IExcelCell instances used to represents cells used in the sheet
    See Also