Get all non empty cells used in the specified sheet.
Syntax
'Declaration
Function GetCells( _
ByVal As System.Short, _
ByVal As System.Collections.Generic.List(Of IExcelCell) _
) As System.Boolean
'Usage
Dim instance As IExcelWriter
Dim sheet As System.Short
Dim cells As System.Collections.Generic.List(Of IExcelCell)
Dim value As System.Boolean
value = instance.GetCells(sheet, cells)
System.bool GetCells(
System.short ,
System.Collections.Generic.List<IExcelCell>
)
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