FastExcel Methods
The following tables list the members exposed by the FastExcel type.
| Name | Description | |
|---|---|---|
|
Dispose(bool) | /// Main disposal function /// |
|
Dispose() | /// Saves any pending changes to the Excel stream and adds/updates associated files if needed /// |
|
GetCellByDefinedName(string, Nullable<Int32>) | Returns cell by defined name If theres more than one, this is the first one. |
|
GetCellRangesByDefinedName(string, Nullable<Int32>) | Retrieves ranges of cells by their defined name |
|
GetCellsByColumnName(string, int, Nullable<Int32>) | Returns all cells in a column by name, within optional row range |
|
GetCellsByDefinedName(string, Nullable<Int32>) | Gets all cells by defined name Like GetCellRangesByCellName, but just retreives all cells in a single list |
|
GetWorksheetIndexFromName(string) | /// Retrieves the index for given worksheet name /// |
|
Read(int, int) | /// Read a sheet by sheet number /// |
|
Read(string, int) | /// Read a sheet by sheet name /// |
|
Update(Worksheet, int) | /// Update the worksheet /// |
|
Update(Worksheet, string) | /// Update the worksheet /// |
|
Write(DataTable, string) | Write a excel from datatable |
|
Write(Worksheet) | Write data to a sheet |
|
Write(Worksheet, int, int) | Write data to a sheet |
|
Write(Worksheet, string, int) | Write data to a sheet |
|
Write<T>(IEnumerable<T>, int, bool) | Write a list of objects to a sheet |
|
Write<T>(IEnumerable<T>, int, int) | Write a list of objects to a sheet |
|
Write<T>(IEnumerable<T>, string, bool) | Write a list of objects to a sheet |
|
Write<T>(IEnumerable<T>, string, int) | Write a list of objects to a sheet |