You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: