npoi-examples icon indicating copy to clipboard operation
npoi-examples copied to clipboard

To get started with NPOI, here is all the official examples.

Results 13 npoi-examples issues
Sort by recently updated
recently updated
newest added

Why is there a method to delete removenodyelement. There is no way to add bodyelement?

question

Hi, I;m trying to RemoveRow using sheet.RemoveRow(row); // this only deletes all the cell values int rowIndex = row.RowNum; int lastRowNum = sheet.LastRowNum; if (rowIndex >= 0 && rowIndex <...

Hi i would like to know how i can set the picture layout type after adding it with addPicture(). Thanks.

enhancement
docx

This example project takes a `System.DataSet` and dynamically generates a workbook from it. Each `DataTable` is created as a sheet in the workbook.

https://github.com/nissl-lab/npoi/issues/238 based on NPOI 2.5.5 and above

enhancement

I need to add some validations to the parsing Excel to DataTable process. for (int i = firstDataRow; i < sheet.PhysicalNumberOfRows; i++) { var sheetRow = sheet.GetRow(i); if (sheetRow ==...

I have code to Generate Excel File where with my data on excel sheet , it creates Column Chart using Npoi package. In that I have 4 columns in my...

In the provided case of ChangeOrientation, it seems that only the entire page has been changed

Hi I've got such a case: while opening a .docx file I want to get all information from every cell in table inside the document. But I can't use foreach...