Feature request!
When Generating new excel file I would want to be able to set cell value in one line with setting the cell type so that this:
var cell = row.CreateCell(0);
cell.SetCellType(CellType.Numeric);
cell.SetCellValue(p.Id);
would become:
row.CreateCell(0).SetCellType(CellType.Numeric).SetCellValue(35)
In my opinion that would make a loot less code for large number of cells.
Feature request! When Generating new excel file I would want to be able to set cell value in one line with setting the cell type so that this:
would become:
row.CreateCell(0).SetCellType(CellType.Numeric).SetCellValue(35)
In my opinion that would make a loot less code for large number of cells.