Class NpoiExtensions
public static class NpoiExtensions
- Inheritance
-
NpoiExtensions
- Inherited Members
Methods
GetCellCollection(IRow)
Get Row Cell Collection
public static NpoiCellCollection GetCellCollection(this IRow row)
Parameters
row
IRowexcel sheet row
Returns
- NpoiCellCollection
row collection
GetCellValue(ICell?, Type, IFormulaEvaluator?)
GetCellValue
public static object? GetCellValue(this ICell? cell, Type propertyType, IFormulaEvaluator? formulaEvaluator = null)
Parameters
cell
ICellcell
propertyType
TypepropertyType
formulaEvaluator
IFormulaEvaluatorformulaEvaluator
Returns
- object
cellValue
GetCellValue<T>(ICell?, IFormulaEvaluator?)
GetCellValue
public static T GetCellValue<T>(this ICell? cell, IFormulaEvaluator? formulaEvaluator = null)
Parameters
cell
ICellcell
formulaEvaluator
IFormulaEvaluator
Returns
- T
typed cell value
Type Parameters
T
Type
GetFormulaEvaluator(IWorkbook)
get workbook IFormulaEvaluator
public static IFormulaEvaluator GetFormulaEvaluator(this IWorkbook workbook)
Parameters
workbook
IWorkbookworkbook
Returns
GetPicturesAndPosition(ISheet)
get pictures with position in current sheet
public static Dictionary<CellPosition, IPictureData> GetPicturesAndPosition(this ISheet sheet)
Parameters
sheet
ISheetsheet
Returns
GetRowCollection(ISheet)
Get Sheet Row Collection
public static NpoiRowCollection GetRowCollection(this ISheet sheet)
Parameters
sheet
ISheetexcel sheet
Returns
- NpoiRowCollection
row collection
GetWorkbookWithAutoSplitSheet(DataTable, ExcelFormat, ExcelSetting?)
GetWorkbookWithAutoSplitSheet
public static IWorkbook GetWorkbookWithAutoSplitSheet(this DataTable dataTable, ExcelFormat excelFormat, ExcelSetting? excelSetting = null)
Parameters
dataTable
DataTabledataTable
excelFormat
ExcelFormatexcel format
excelSetting
ExcelSettingexcelSetting
Returns
- IWorkbook
excel workbook with data
GetWorkbookWithAutoSplitSheet<TEntity>(IList<TEntity>, ExcelFormat)
GetWorkbookWithAutoSplitSheet
public static IWorkbook GetWorkbookWithAutoSplitSheet<TEntity>(this IList<TEntity> entityList, ExcelFormat excelFormat)
Parameters
entityList
IList<TEntity>entity list
excelFormat
ExcelFormatexcel format
Returns
- IWorkbook
excel workbook with data
Type Parameters
TEntity
entity type
ImportData(ISheet, DataTable?)
Import dataTable data
public static void ImportData(this ISheet sheet, DataTable? dataTable)
Parameters
ImportData<TEntity>(ISheet, IEnumerable<TEntity>)
import entityList to sheet
public static ISheet ImportData<TEntity>(this ISheet sheet, IEnumerable<TEntity> list)
Parameters
sheet
ISheetsheet
list
IEnumerable<TEntity>entityList
Returns
Type Parameters
TEntity
EntityType
ImportData<TEntity>(ISheet, IEnumerable<TEntity>, int)
import entityList to sheet
public static ISheet ImportData<TEntity>(this ISheet sheet, IEnumerable<TEntity> list, int sheetIndex)
Parameters
sheet
ISheetsheet
list
IEnumerable<TEntity>entityList
sheetIndex
intsheetIndex
Returns
Type Parameters
TEntity
EntityType
ImportData<TEntity>(ISheet, DataTable)
import dataTable to sheet
public static ISheet ImportData<TEntity>(this ISheet sheet, DataTable dataTable)
Parameters
Returns
Type Parameters
TEntity
EntityType
ImportData<TEntity>(ISheet, DataTable, int)
import dataTable to sheet
public static ISheet ImportData<TEntity>(this ISheet sheet, DataTable dataTable, int sheetIndex)
Parameters
Returns
Type Parameters
TEntity
EntityType
ImportData<TEntity>(IWorkbook, IEnumerable<TEntity>)
import entityList to workbook first sheet
public static int ImportData<TEntity>(this IWorkbook workbook, IEnumerable<TEntity> list)
Parameters
workbook
IWorkbookworkbook
list
IEnumerable<TEntity>entityList
Returns
Type Parameters
TEntity
TEntity
ImportData<TEntity>(IWorkbook, IEnumerable<TEntity>, int)
import entityList to workbook sheet
public static int ImportData<TEntity>(this IWorkbook workbook, IEnumerable<TEntity> list, int sheetIndex)
Parameters
workbook
IWorkbookworkbook
list
IEnumerable<TEntity>entityList
sheetIndex
intsheetIndex
Returns
- int
the sheet LastRowNum
Type Parameters
TEntity
TEntity
ImportData<TEntity>(IWorkbook, DataTable)
import dataTable to workbook first sheet
public static int ImportData<TEntity>(this IWorkbook workbook, DataTable dataTable)
Parameters
Returns
Type Parameters
TEntity
TEntity
ImportData<TEntity>(IWorkbook, DataTable, int)
import dataTable to workbook first sheet
public static int ImportData<TEntity>(this IWorkbook workbook, DataTable dataTable, int sheetIndex)
Parameters
Returns
- int
the sheet LastRowNum
Type Parameters
TEntity
TEntity
SetCellValue(ICell, object?)
SetCellValue
public static void SetCellValue(this ICell cell, object? value)
Parameters
SetCellValue(ICell, object?, string?)
SetCellValue
public static void SetCellValue(this ICell cell, object? value, string? formatter)
Parameters
ToDataSet(IWorkbook, bool, int?)
Workbook2ToDataSet
public static DataSet ToDataSet(this IWorkbook workbook, bool removeEmptyRows = false, int? maxColumns = null)
Parameters
Returns
- DataSet
DataSet
ToDataSet(IWorkbook, int, bool, int?)
Workbook2ToDataSet
public static DataSet ToDataSet(this IWorkbook workbook, int headerRowIndex, bool removeEmptyRows = false, int? maxColumns = null)
Parameters
workbook
IWorkbookexcel workbook
headerRowIndex
intheaderRowIndex
removeEmptyRows
boolremoveEmptyRows
maxColumns
int?maxColumns
Returns
- DataSet
DataSet
ToDataTable(ISheet, bool, int?)
Sheet2DataTable
public static DataTable ToDataTable(this ISheet sheet, bool removeEmptyRows = false, int? maxColumns = null)
Parameters
Returns
- DataTable
DataTable
ToDataTable(ISheet, int, bool, int?)
Sheet2DataTable
public static DataTable ToDataTable(this ISheet sheet, int headerRowIndex, bool removeEmptyRows = false, int? maxColumns = null)
Parameters
sheet
ISheetexcel sheet
headerRowIndex
intheaderRowIndex
removeEmptyRows
boolremoveEmptyRows
maxColumns
int?maxColumns
Returns
- DataTable
DataTable
ToDataTable(IWorkbook, bool, int?)
Workbook2ToDataTable
public static DataTable ToDataTable(this IWorkbook workbook, bool removeEmptyRows = false, int? maxColumns = null)
Parameters
Returns
- DataTable
DataTable
ToDataTable(IWorkbook, int, int, bool, int?)
Workbook2ToDataTable
public static DataTable ToDataTable(this IWorkbook workbook, int sheetIndex, int headerRowIndex, bool removeEmptyRows = false, int? maxColumns = null)
Parameters
workbook
IWorkbookexcel workbook
sheetIndex
intsheetIndex
headerRowIndex
intheaderRowIndex
removeEmptyRows
boolremoveEmptyRows
maxColumns
int?maxColumns
Returns
- DataTable
DataTable
ToEntities<TEntity>(ISheet, int)
public static IEnumerable<TEntity?> ToEntities<TEntity>(this ISheet sheet, int sheetIndex) where TEntity : new()
Parameters
Returns
- IEnumerable<TEntity>
Type Parameters
TEntity
ToEntities<TEntity>(IWorkbook, int)
public static IEnumerable<TEntity?> ToEntities<TEntity>(this IWorkbook workbook, int sheetIndex) where TEntity : new()
Parameters
Returns
- IEnumerable<TEntity>
Type Parameters
TEntity
ToEntityListWithValidationResult<TEntity>(ISheet, int, IValidator<TEntity>?)
Sheet2EntityList and validate
public static (List<TEntity?> EntityList, Dictionary<int, ValidationResult> ValidationResults) ToEntityListWithValidationResult<TEntity>(this ISheet sheet, int sheetIndex = 0, IValidator<TEntity>? validator = null) where TEntity : new()
Parameters
Returns
- (List<TEntity> EntityList, Dictionary<int, ValidationResult> ValidationResults)
entity list and validation results
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(ISheet)
Sheet2EntityList
public static List<TEntity?> ToEntityList<TEntity>(this ISheet sheet) where TEntity : new()
Parameters
sheet
ISheetexcel sheet
Returns
- List<TEntity>
entity list
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(ISheet, int)
Sheet2EntityList
public static List<TEntity?> ToEntityList<TEntity>(this ISheet sheet, int sheetIndex) where TEntity : new()
Parameters
Returns
- List<TEntity>
entity list
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(IWorkbook)
Workbook2EntityList
public static List<TEntity?> ToEntityList<TEntity>(this IWorkbook workbook) where TEntity : new()
Parameters
workbook
IWorkbookexcel workbook
Returns
- List<TEntity>
entity list
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(IWorkbook, int)
Workbook2EntityList
public static List<TEntity?> ToEntityList<TEntity>(this IWorkbook workbook, int sheetIndex) where TEntity : new()
Parameters
Returns
- List<TEntity>
entity list
Type Parameters
TEntity
EntityType
ToExcelBytes(IWorkbook)
ToExcelBytes
public static byte[] ToExcelBytes(this IWorkbook workbook)
Parameters
workbook
IWorkbookworkbook
Returns
- byte[]
excel bytes
ToExcelBytes(IWorkbook, bool)
ToExcelBytes
public static byte[] ToExcelBytes(this IWorkbook workbook, bool closeWorkbook)
Parameters
Returns
- byte[]
excel bytes
ToExcelBytes(DataTable)
DataTable2ExcelBytes(*.xlsx by default)
public static byte[] ToExcelBytes(this DataTable dataTable)
Parameters
dataTable
DataTabledataTable
Returns
- byte[]
ToExcelBytes(DataTable, ExcelFormat)
DataTable2ExcelBytes
public static byte[] ToExcelBytes(this DataTable dataTable, ExcelFormat excelFormat)
Parameters
dataTable
DataTabledataTable
excelFormat
ExcelFormatexcel格式
Returns
- byte[]
ToExcelBytes(DataTable, ExcelFormat, ExcelSetting?)
DataTable2ExcelBytes
public static byte[] ToExcelBytes(this DataTable dataTable, ExcelFormat excelFormat, ExcelSetting? excelSetting)
Parameters
dataTable
DataTabledataTable
excelFormat
ExcelFormatexcelFormat
excelSetting
ExcelSettingexcelSetting
Returns
- byte[]
ToExcelBytesByTemplate<TEntity>(IEnumerable<TEntity>, ISheet, object?)
export excel via template
public static byte[] ToExcelBytesByTemplate<TEntity>(this IEnumerable<TEntity> entities, ISheet templateSheet, object? extraData = null)
Parameters
entities
IEnumerable<TEntity>entities
templateSheet
ISheetextraData
objectextraData
Returns
- byte[]
exported excel bytes
Type Parameters
TEntity
Entity Type
ToExcelBytesByTemplate<TEntity>(IEnumerable<TEntity>, IWorkbook, int, object?)
export excel via template
public static byte[] ToExcelBytesByTemplate<TEntity>(this IEnumerable<TEntity> entities, IWorkbook templateWorkbook, int sheetIndex = 0, object? extraData = null)
Parameters
entities
IEnumerable<TEntity>entities
templateWorkbook
IWorkbooktemplateWorkbook
sheetIndex
intsheetIndex
extraData
objectextraData
Returns
- byte[]
exported excel bytes
Type Parameters
TEntity
Entity Type
ToExcelBytesByTemplate<TEntity>(IEnumerable<TEntity>, byte[], ExcelFormat, int, object?)
export excel via template
public static byte[] ToExcelBytesByTemplate<TEntity>(this IEnumerable<TEntity> entities, byte[] templateBytes, ExcelFormat excelFormat = ExcelFormat.Xls, int sheetIndex = 0, object? extraData = null)
Parameters
entities
IEnumerable<TEntity>entities
templateBytes
byte[]templateBytes
excelFormat
ExcelFormatexcelFormat
sheetIndex
intsheetIndex,zero by default
extraData
objectextraData
Returns
- byte[]
exported excel bytes
Type Parameters
TEntity
Entity Type
ToExcelBytesByTemplate<TEntity>(IEnumerable<TEntity>, Stream, ExcelFormat, int, object?)
export excel via template
public static byte[] ToExcelBytesByTemplate<TEntity>(this IEnumerable<TEntity> entities, Stream templateStream, ExcelFormat excelFormat = ExcelFormat.Xls, int sheetIndex = 0, object? extraData = null)
Parameters
entities
IEnumerable<TEntity>entities
templateStream
StreamtemplateStream
excelFormat
ExcelFormatexcelFormat
sheetIndex
intsheetIndex,zero by default
extraData
objectextraData
Returns
- byte[]
exported excel bytes
Type Parameters
TEntity
Entity Type
ToExcelBytesByTemplate<TEntity>(IEnumerable<TEntity>, string, int, object?)
export excel via template
public static byte[] ToExcelBytesByTemplate<TEntity>(this IEnumerable<TEntity> entities, string templatePath, int sheetIndex = 0, object? extraData = null)
Parameters
entities
IEnumerable<TEntity>entities
templatePath
stringtemplatePath
sheetIndex
intsheetIndex,zero by default
extraData
objectextraData
Returns
- byte[]
exported excel bytes
Type Parameters
TEntity
Entity Type
ToExcelBytes<TEntity>(IEnumerable<TEntity>)
EntityList2ExcelBytes(*.xls by default)
public static byte[] ToExcelBytes<TEntity>(this IEnumerable<TEntity> entityList)
Parameters
entityList
IEnumerable<TEntity>entityList
Returns
- byte[]
Type Parameters
TEntity
EntityType
ToExcelBytes<TEntity>(IEnumerable<TEntity>, ExcelFormat)
EntityList2ExcelBytes
public static byte[] ToExcelBytes<TEntity>(this IEnumerable<TEntity> entityList, ExcelFormat excelFormat)
Parameters
entityList
IEnumerable<TEntity>entityList
excelFormat
ExcelFormatexcelFormat
Returns
- byte[]
Type Parameters
TEntity
EntityType
ToExcelBytes<TEntity>(IEnumerable<TEntity>, ExcelFormat, int)
EntityList2ExcelBytes
public static byte[] ToExcelBytes<TEntity>(this IEnumerable<TEntity> entityList, ExcelFormat excelFormat, int sheetIndex)
Parameters
entityList
IEnumerable<TEntity>entityList
excelFormat
ExcelFormatexcelFormat
sheetIndex
intsheetIndex
Returns
- byte[]
Type Parameters
TEntity
EntityType
ToExcelBytes<TEntity>(IList<TEntity>, ExcelFormat)
EntityList2ExcelBytes
public static byte[] ToExcelBytes<TEntity>(this IList<TEntity> entityList, ExcelFormat excelFormat = ExcelFormat.Xls)
Parameters
entityList
IList<TEntity>entityList
excelFormat
ExcelFormatexcelFormat
Returns
- byte[]
Type Parameters
TEntity
EntityType
ToExcelFile(DataTable, string)
export DataTable to excel file
public static void ToExcelFile(this DataTable dataTable, string excelPath)
Parameters
ToExcelFile(DataTable, string, ExcelSetting?)
export DataTable to excel file
public static void ToExcelFile(this DataTable dataTable, string excelPath, ExcelSetting? excelSetting)
Parameters
dataTable
DataTabledataTable
excelPath
stringexcelPath
excelSetting
ExcelSettingexcelSetting
ToExcelFileByTemplate<TEntity>(IEnumerable<TEntity>, IWorkbook, string, int, object?)
export excel via template
public static void ToExcelFileByTemplate<TEntity>(this IEnumerable<TEntity> entities, IWorkbook templateWorkbook, string excelPath, int sheetIndex = 0, object? extraData = null)
Parameters
entities
IEnumerable<TEntity>entities
templateWorkbook
IWorkbooktemplateWorkbook
excelPath
stringsheetIndex
intsheetIndex
extraData
objectextraData
Type Parameters
TEntity
Entity Type
ToExcelFileByTemplate<TEntity>(IEnumerable<TEntity>, byte[], string, ExcelFormat, int, object?)
export excel via template
public static void ToExcelFileByTemplate<TEntity>(this IEnumerable<TEntity> entities, byte[] templateBytes, string excelPath, ExcelFormat excelFormat = ExcelFormat.Xls, int sheetIndex = 0, object? extraData = null)
Parameters
entities
IEnumerable<TEntity>entities
templateBytes
byte[]templateBytes
excelPath
stringexcelPath
excelFormat
ExcelFormatexcelFormat
sheetIndex
intsheetIndex,zero by default
extraData
objectextraData
Type Parameters
TEntity
Entity Type
ToExcelFileByTemplate<TEntity>(IEnumerable<TEntity>, string, string, int, object?)
export excel via template
public static void ToExcelFileByTemplate<TEntity>(this IEnumerable<TEntity> entities, string templatePath, string excelPath, int sheetIndex = 0, object? extraData = null)
Parameters
entities
IEnumerable<TEntity>entities
templatePath
stringexcelPath
stringtemplateBytes
sheetIndex
intsheetIndex,zero by default
extraData
objectextraData
Type Parameters
TEntity
Entity Type
ToExcelFile<TEntity>(IEnumerable<TEntity>, string)
EntityList2ExcelFile
public static void ToExcelFile<TEntity>(this IEnumerable<TEntity> entityList, string excelPath)
Parameters
entityList
IEnumerable<TEntity>entityList
excelPath
stringexcelPath
Type Parameters
TEntity
EntityType
ToExcelFile<TEntity>(IEnumerable<TEntity>, string, int)
EntityList2ExcelFile
public static void ToExcelFile<TEntity>(this IEnumerable<TEntity> entityList, string excelPath, int sheetIndex)
Parameters
entityList
IEnumerable<TEntity>entityList
excelPath
stringexcelPath
sheetIndex
intsheetIndex
Type Parameters
TEntity
EntityType
ToExcelFile<TEntity>(IList<TEntity>, string)
EntityList2ExcelFile
public static void ToExcelFile<TEntity>(this IList<TEntity> entityList, string excelPath)
Parameters
Type Parameters
TEntity
EntityType
ToExcelStream(DataTable, Stream)
DataTable2ExcelStream
public static void ToExcelStream(this DataTable dataTable, Stream stream)
Parameters
ToExcelStream(DataTable, Stream, ExcelFormat)
DataTable2ExcelStream
public static void ToExcelStream(this DataTable dataTable, Stream stream, ExcelFormat excelFormat)
Parameters
dataTable
DataTabledataTable
stream
Streamstream
excelFormat
ExcelFormatexcelFormat
ToExcelStream(DataTable, Stream, ExcelFormat, ExcelSetting?)
DataTable2ExcelStream
public static void ToExcelStream(this DataTable dataTable, Stream stream, ExcelFormat excelFormat, ExcelSetting? excelSetting)
Parameters
dataTable
DataTabledataTable
stream
Streamstream
excelFormat
ExcelFormatexcelFormat
excelSetting
ExcelSettingexcelSetting
ToExcelStream<TEntity>(IEnumerable<TEntity>, Stream)
EntityList2ExcelStream(*.xls by default)
public static void ToExcelStream<TEntity>(this IEnumerable<TEntity> entityList, Stream stream)
Parameters
entityList
IEnumerable<TEntity>entityList
stream
Streamstream where to write
Type Parameters
TEntity
EntityType
ToExcelStream<TEntity>(IEnumerable<TEntity>, Stream, ExcelFormat)
EntityList2ExcelStream
public static void ToExcelStream<TEntity>(this IEnumerable<TEntity> entityList, Stream stream, ExcelFormat excelFormat)
Parameters
entityList
IEnumerable<TEntity>entityList
stream
Streamstream where to write
excelFormat
ExcelFormatexcelFormat
Type Parameters
TEntity
EntityType
ToExcelStream<TEntity>(IEnumerable<TEntity>, Stream, ExcelFormat, int)
EntityList2ExcelStream
public static void ToExcelStream<TEntity>(this IEnumerable<TEntity> entityList, Stream stream, ExcelFormat excelFormat, int sheetIndex)
Parameters
entityList
IEnumerable<TEntity>entityList
stream
Streamstream where to write
excelFormat
ExcelFormatexcelFormat
sheetIndex
intsheetIndex
Type Parameters
TEntity
EntityType
ToExcelStream<TEntity>(IList<TEntity>, Stream, ExcelFormat)
EntityList2ExcelStream
public static void ToExcelStream<TEntity>(this IList<TEntity> entityList, Stream stream, ExcelFormat excelFormat = ExcelFormat.Xls)
Parameters
entityList
IList<TEntity>entityList
stream
Streamstream where to write
excelFormat
ExcelFormatexcelFormat
Type Parameters
TEntity
EntityType
TryAddPicture(ISheet, int, int, IPictureData)
TryAddPicture in specific cell
public static bool TryAddPicture(this ISheet sheet, int row, int col, IPictureData pictureData)
Parameters
sheet
ISheetsheet
row
intcell rowIndex
col
intcell columnIndex
pictureData
IPictureDatapictureData
Returns
- bool
whether add success
TryAddPicture(ISheet, int, int, byte[], PictureType)
TryAddPicture in specific cell
public static bool TryAddPicture(this ISheet sheet, int row, int col, byte[] pictureBytes, PictureType pictureType = PictureType.PNG)
Parameters
sheet
ISheetsheet
row
intcell rowIndex
col
intcell columnIndex
pictureBytes
byte[]picture bytes
pictureType
PictureTypepicture type
Returns
- bool
whether add success
WriteToFile(IWorkbook, string)
Write workbook to excel file
public static void WriteToFile(this IWorkbook workbook, string filePath)
Parameters
WriteToFile(IWorkbook, string, bool)
Write workbook to excel file
public static void WriteToFile(this IWorkbook workbook, string filePath, bool closeWorkbook)