PicoXLSX 2.8.0
PicoXLSX is a library to generate Microsoft Excel files (XLSX) in an easy and native way
See the version list below for details.
Install-Package PicoXLSX -Version 2.8.0
dotnet add package PicoXLSX --version 2.8.0
<PackageReference Include="PicoXLSX" Version="2.8.0" />
paket add PicoXLSX --version 2.8.0
#r "nuget: PicoXLSX, 2.8.0"
NanoXLSX
NanoXLSX is a small .NET library written in C#, to create and read Microsoft Excel files in the XLSX format (Microsoft Excel 2007 or newer) in an easy and native way
- No dependencies (*
- No need for an installation of Microsoft Office
- No need for Office interop libraries
- No need for 3rd party libraries
- No need for an installation of the Microsoft Open Office XML SDK (OOXML)
Project website: https://picoxlsx.rabanti.ch
See the Change Log for recent updates.
Reader Support
Currently, only basic reader functionality is available:
- Reading and casting of cell values into the appropriate data types
- Reading of several worksheets in on workbook with names
- Limited processing of styles (when reading) at the moment
- No support of other objects than spreadsheet data at the moment
Note: Styles in loaded files are only considering number formats (to determine date and time values), as well as custom formats. The scope of reader functionality may change with future versions.
Requirements
NanoXLSX is based on PicoXLSX and was created with .NET version 4.5. Newer versions like 4.6.1 are working and tested. Older versions like 3.5 and 4.0 may also work with minor changes. Some functions introduced in .NET 4.5 were used and must be adapted in this case.
*)The only requirement to compile the library besides .NET is the assembly WindowsBase, as well as System.IO.Compression. These assemblies are standard components in all Microsoft Windows systems (except Windows RT systems). If your IDE of choice supports referencing assemblies from the Global Assembly Cache (GAC) of Windows, select WindowsBase and Compression from there. If you want so select the DLLs manually and Microsoft Visual Studio is installed on your system, the DLL of WindowsBase can be found most likely under “c:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\WindowsBase.dll”, as well as System.IO.Compression under "c:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETFramework\v4.5\System.IO.Compression.dll". Otherwise you find them in the GAC, under “c:\Windows\Microsoft.NET\assembly\GAC_MSIL\WindowsBase” and "c:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.IO.Compression"
If you want to compile the documentation project (folder: Documentation; project file: shfbproj), you need also the Sandcastle Help File Builder (SHFB). It is also freely available. But you don't need the documentation project to build the NanoXLSX library.
Installation
Using Nuget
By package Manager (PM):
Install-Package NanoXLSX
By .NET CLI:
dotnet add package NanoXLSX
As DLL
Simply place the NanoXLSX DLL into your .NET project and add a reference to it. Please keep in mind that the .NET version of your solution must match with the runtime version of the NanoXLSX DLL (currently compiled with 4.5).
As source files
Place all .CS files from the NanoXLSX source folder and its sub-folders into your project.
Usage
Quick Start (shortened syntax)
Workbook workbook = new Workbook("myWorkbook.xlsx", "Sheet1"); // Create new workbook with a worksheet called Sheet1
workbook.WS.Value("Some Data"); // Add cell A1
workbook.WS.Formula("=A1"); // Add formula to cell B1
workbook.WS.Down(); // Go to row 2
workbook.WS.Value(DateTime.Now, Style.BasicStyles.Bold); // Add formatted value to cell A2
workbook.Save(); // Save the workbook as myWorkbook.xlsx
Quick Start (regular syntax)
Workbook workbook = new Workbook("myWorkbook.xlsx", "Sheet1"); // Create new workbook with a worksheet called Sheet1
workbook.CurrentWorksheet.AddNextCell("Some Data"); // Add cell A1
workbook.CurrentWorksheet.AddNextCell(42); // Add cell B1
workbook.CurrentWorksheet.GoToNextRow(); // Go to row 2
workbook.CurrentWorksheet.AddNextCell(DateTime.Now); // Add cell A2
workbook.Save(); // Save the workbook as myWorkbook.xlsx
Quick Start (read)
Workbook wb = Workbook.Load("basic.xlsx"); // Read the workbook
System.Console.WriteLine("contains worksheet name: " + wb.CurrentWorksheet.SheetName);
foreach (KeyValuePair<string, Cell> cell in wb.CurrentWorksheet.Cells)
{
System.Console.WriteLine("Cell address: " + cell.Key + ": content:'" + cell.Value.Value + "'");
}
Further References
See the full API-Documentation at: https://rabanti-github.github.io/NanoXLSX/.
The Demo project contains 15 simple use cases. You can find also the full documentation in the Documentation-Folder (html files or single chm file) or as C# documentation in the particular .CS files.
See also: Getting started in the Wiki
NanoXLSX
NanoXLSX is a small .NET library written in C#, to create and read Microsoft Excel files in the XLSX format (Microsoft Excel 2007 or newer) in an easy and native way
- No dependencies (*
- No need for an installation of Microsoft Office
- No need for Office interop libraries
- No need for 3rd party libraries
- No need for an installation of the Microsoft Open Office XML SDK (OOXML)
Project website: https://picoxlsx.rabanti.ch
See the Change Log for recent updates.
Reader Support
Currently, only basic reader functionality is available:
- Reading and casting of cell values into the appropriate data types
- Reading of several worksheets in on workbook with names
- Limited processing of styles (when reading) at the moment
- No support of other objects than spreadsheet data at the moment
Note: Styles in loaded files are only considering number formats (to determine date and time values), as well as custom formats. The scope of reader functionality may change with future versions.
Requirements
NanoXLSX is based on PicoXLSX and was created with .NET version 4.5. Newer versions like 4.6.1 are working and tested. Older versions like 3.5 and 4.0 may also work with minor changes. Some functions introduced in .NET 4.5 were used and must be adapted in this case.
*)The only requirement to compile the library besides .NET is the assembly WindowsBase, as well as System.IO.Compression. These assemblies are standard components in all Microsoft Windows systems (except Windows RT systems). If your IDE of choice supports referencing assemblies from the Global Assembly Cache (GAC) of Windows, select WindowsBase and Compression from there. If you want so select the DLLs manually and Microsoft Visual Studio is installed on your system, the DLL of WindowsBase can be found most likely under “c:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\WindowsBase.dll”, as well as System.IO.Compression under "c:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETFramework\v4.5\System.IO.Compression.dll". Otherwise you find them in the GAC, under “c:\Windows\Microsoft.NET\assembly\GAC_MSIL\WindowsBase” and "c:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.IO.Compression"
If you want to compile the documentation project (folder: Documentation; project file: shfbproj), you need also the Sandcastle Help File Builder (SHFB). It is also freely available. But you don't need the documentation project to build the NanoXLSX library.
Installation
Using Nuget
By package Manager (PM):
Install-Package NanoXLSX
By .NET CLI:
dotnet add package NanoXLSX
As DLL
Simply place the NanoXLSX DLL into your .NET project and add a reference to it. Please keep in mind that the .NET version of your solution must match with the runtime version of the NanoXLSX DLL (currently compiled with 4.5).
As source files
Place all .CS files from the NanoXLSX source folder and its sub-folders into your project.
Usage
Quick Start (shortened syntax)
Workbook workbook = new Workbook("myWorkbook.xlsx", "Sheet1"); // Create new workbook with a worksheet called Sheet1
workbook.WS.Value("Some Data"); // Add cell A1
workbook.WS.Formula("=A1"); // Add formula to cell B1
workbook.WS.Down(); // Go to row 2
workbook.WS.Value(DateTime.Now, Style.BasicStyles.Bold); // Add formatted value to cell A2
workbook.Save(); // Save the workbook as myWorkbook.xlsx
Quick Start (regular syntax)
Workbook workbook = new Workbook("myWorkbook.xlsx", "Sheet1"); // Create new workbook with a worksheet called Sheet1
workbook.CurrentWorksheet.AddNextCell("Some Data"); // Add cell A1
workbook.CurrentWorksheet.AddNextCell(42); // Add cell B1
workbook.CurrentWorksheet.GoToNextRow(); // Go to row 2
workbook.CurrentWorksheet.AddNextCell(DateTime.Now); // Add cell A2
workbook.Save(); // Save the workbook as myWorkbook.xlsx
Quick Start (read)
Workbook wb = Workbook.Load("basic.xlsx"); // Read the workbook
System.Console.WriteLine("contains worksheet name: " + wb.CurrentWorksheet.SheetName);
foreach (KeyValuePair<string, Cell> cell in wb.CurrentWorksheet.Cells)
{
System.Console.WriteLine("Cell address: " + cell.Key + ": content:'" + cell.Value.Value + "'");
}
Further References
See the full API-Documentation at: https://rabanti-github.github.io/NanoXLSX/.
The Demo project contains 15 simple use cases. You can find also the full documentation in the Documentation-Folder (html files or single chm file) or as C# documentation in the particular .CS files.
See also: Getting started in the Wiki
Release Notes
Please see the https://github.com/rabanti-github/PicoXLSX/blob/master/Changelog.md for recent updates
Dependencies
This package has no dependencies.
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
2.8.1 | 254 | 12/10/2020 |
2.8.0 | 80 | 12/10/2020 |
2.7.0 | 513 | 8/30/2020 |
2.6.6 | 154 | 7/19/2020 |
2.6.5 | 1,041 | 1/12/2020 |
2.6.4 | 809 | 5/20/2019 |
2.6.3 | 485 | 12/8/2018 |
2.6.2 | 350 | 11/4/2018 |
2.6.1 | 387 | 10/6/2018 |
2.6.0 | 359 | 10/4/2018 |
2.5.1 | 417 | 8/19/2018 |
2.5.0 | 1,297 | 7/2/2018 |
2.4.0 | 492 | 6/6/2018 |
2.3.2 | 1,020 | 5/30/2018 |
2.3.1 | 571 | 3/12/2018 |
2.3.0 | 515 | 2/9/2018 |
2.2.0 | 631 | 12/10/2017 |
2.1.1 | 800 | 12/8/2017 |