Search
Follow Us
Categories
- 3D(2)
- CAD(1)
- Compression(3)
- EBook(2)
- Email(1)
- File Formats(5)
- Font(1)
- GIS(2)
- Image(5)
- Notes Taking(1)
- PDF(3)
- Presentation(3)
- Programming(1)
- Spreadsheet(15)
- Web(2)
- Word Processing(8)
Archives
- May 2023 (9)
- April 2023 (2)
- March 2023 (4)
- August 2022 (2)
- December 2021 (1)
- October 2021 (3)
- September 2021 (7)
- August 2021 (4)
- July 2021 (2)
- October 2020 (1)
- January 2020 (1)
- October 2019 (2)
- September 2019 (1)
- June 2019 (1)
- May 2019 (1)
- April 2019 (1)
- March 2019 (2)
- February 2019 (5)
- January 2019 (6)
- December 2018 (6)
- November 2018 (1)
Tag Archives: NPOI Code Examples
Insert Image in Word Document using NPOI in C#/VB.NET
The use of images in documents is a routine operation while working with Microsoft Word. Images give clarity to the content of the document as well as play a vital role in relaying information that is more difficult to put …
Posted in Word Processing Tagged NPOI, NPOI API for Word, NPOI Code Examples
Set Cell Style in Excel using NPOI API in C#
Applying a style to a cell or set of cells is a very common operation while working with workbooks in Excel. By cell styling, we mean applying a defined set of formattings such as fonts, font sizes, number formats, cell …
Posted in Spreadsheet Tagged NPOI, NPOI API for Spreadsheet, NPOI Code Examples
Protect Excel Worksheets using NPOI in C#
Imagine you have hard worked to compile your data in an Excel workbook and saved it to your computer. Your kids are using the same computer for their educational purpose. They accidentally open the file you have compiled after so …
Posted in Spreadsheet Tagged NPOI, NPOI API for Spreadsheet, NPOI Code Examples
Merge Cells in Excel using NPOI in C#
A common operation in Microsoft Excel is to merge two or more cells. This gives a more organized look and feels to your data with the sense of data grouping and headers information. You can merge as many cells as …
Posted in Spreadsheet Tagged NPOI, NPOI API for Spreadsheet, NPOI Code Examples
Insert Image in Excel using NPOI in .NET
Inserting images in Excel files is a very commonly used feature for Microsoft Excel users. Adding images to your Excel workbooks helps clarify your point of view and data representation more effectively. You can add multiple images to each worksheet …
Posted in Spreadsheet Tagged NPOI, NPOI API for Spreadsheet, NPOI Code Examples
Create Drop-down List in Excel with NPOI in C#
Drop-down lists provide a better way to limit users for data entry from a specified list of options. This removes the chances of making wrong data entries if input by the user manually. Creating drop-down lists in your Excel workbook …
Posted in Spreadsheet Tagged NPOI, NPOI API for Spreadsheet, NPOI Code Examples
Copy Worksheet in Excel with NPOI API using C#
Microsoft Excel is a perfect tool for working with data-intensive computations and calculations. People use it in their routine work to carry out complex calculations such as mathematical formula implementation, statistical analysis and many more. Data in an Excel worksheet …
Posted in Spreadsheet Tagged NPOI, NPOI API for Spreadsheet, NPOI Code Examples
Insert Header and Footer in Excel using NPOI in .NET
If you are a frequent user of working with Excel workbooks, you must be familiar with adding Headers and Footers to your file. As the name indicates, the Header in an Excel file represents the repetitive information added to the …
Posted in Spreadsheet Tagged NPOI, NPOI API for Spreadsheet, NPOI Code Examples
Add Formula in Excel using NPOI in .NET
If you have worked with Formulas in Excel, you must know the power of using formulas to perform calculations and analysis. Using formulas is essential for creating effective spreadsheets and making informed decisions. Excel has a wide range of formulas …
Posted in Spreadsheet Tagged NPOI, NPOI API for Spreadsheet, NPOI Code Examples
Add Comment in Excel using NPOI in .NET
In our previous article, Using NPOI for Spreadsheets in .NET, we went through and showed how you can create a Workbook with NPOI in C#. We also showed examples of how to read data from a spreadsheet and save …
Posted in Spreadsheet Tagged NPOI, NPOI API for Spreadsheet, NPOI Code Examples