SautinSoft.Excel
2025.2.6
dotnet add package SautinSoft.Excel --version 2025.2.6
NuGet\Install-Package SautinSoft.Excel -Version 2025.2.6
<PackageReference Include="SautinSoft.Excel" Version="2025.2.6" />
paket add SautinSoft.Excel --version 2025.2.6
#r "nuget: SautinSoft.Excel, 2025.2.6"
// Install SautinSoft.Excel as a Cake Addin #addin nuget:?package=SautinSoft.Excel&version=2025.2.6 // Install SautinSoft.Excel as a Cake Tool #tool nuget:?package=SautinSoft.Excel&version=2025.2.6
SautinSoft.Excel
Excel .Net is a standalone C# assembly which gives you full set of API to manipulate (read, write, edit, convert) with documents in XLSX, XLS, CSV formats.
SautinSoft.Excel is a standalone C# assembly which gives you full set of API to manipulate (read, write, edit, convert) with documents in XLSX, XLS, CSV formats.
Quick links
Top Features
System Requirement
- .NET Framework 4.6.2 - 4.8
- .NET 6, 7, 8, 9
- Windows, Linux, macOS, Android, iOS.
Getting Started with Excel .Net
Are you ready to give Excel .NET a try? Simply execute Install-Package sautinsoft.excel
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Excel .NET and want to upgrade the version, please execute Update-Package sautinsoft.excel
to get the latest version.
Convert XLSX/XLS to PDF
string inpFile = @"..\..\..\Example.xlsx";
//string inpFile = @"..\..\..\Example.xls";
string outFile = @"..\..\..\Result.pdf";
ExcelDocument excelDocument = ExcelDocument.Load(inpFile);
excelDocument.Save(outFile, new PdfSaveOptions());
Create Excel document
string outFile = @"..\..\..\Result.xlsx";
ExcelDocument excelDocument = new ExcelDocument();
excelDocument.Worksheets.Add("The main worksheet");
excelDocument.Worksheets.Add("Second worksheet");
// Create a variable to address
var worksheet = excelDocument.Worksheets["The main worksheet"];
// Add plain text
worksheet.Cells["A1"].Value = "This is common string";
worksheet.Cells["B1"].Value = "Hello, World! 12345";
// Add the result of the expression
worksheet.Cells["A2"].Value = "This is the result of a mathematical expression in C#";
worksheet.Cells["B2"].Value = 5 + 5;
excelDocument.Save(outFile, new XlsxSaveOptions());
Load Excel file
string filePath = @"..\..\..\example.xlsx";
// The file format is detected automatically from the file extension: ".xlsx".
ExcelDocument excel = ExcelDocument.Load(filePath);
if (excel != null)
Console.WriteLine("Loaded successfully!");
Modify XLSX/XLS documents
string image = @"..\..\..\cup.jpg";
string outFile = @"..\..\..\Result.xlsx";
ExcelDocument excelDocument = new ExcelDocument();
excelDocument.Worksheets.Add("Page 1");
var worksheet = excelDocument.Worksheets["Page 1"];
// Insert an image
worksheet.Pictures.Add(image, SKRect.Create(1080, 960));
excelDocument.Save(outFile);
Resources
- Website: www.sautinsoft.com
- Product Home: Excel .Net
- Download SautinSoft.Excel
- Developer Guide
- API Reference
- Support Team
- License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 is compatible. net472 is compatible. net48 is compatible. net481 was computed. |
-
.NETFramework 4.6.2
- Pkcs11Interop (>= 5.1.2)
- Portable.BouncyCastle (>= 1.9.0)
- SkiaSharp (>= 2.88.7)
- Svg.Skia (>= 1.0.0.18)
- System.IO.Packaging (>= 4.5.0)
- System.Net.Http (>= 4.3.4)
- System.Text.Encoding.CodePages (>= 4.5.0)
-
.NETFramework 4.7.1
- Pkcs11Interop (>= 5.1.2)
- Portable.BouncyCastle (>= 1.9.0)
- SkiaSharp (>= 2.88.7)
- Svg.Skia (>= 1.0.0.18)
- System.IO.Packaging (>= 4.5.0)
- System.Net.Http (>= 4.3.4)
- System.Text.Encoding.CodePages (>= 4.5.0)
-
.NETFramework 4.7.2
- Pkcs11Interop (>= 5.1.2)
- Portable.BouncyCastle (>= 1.9.0)
- SkiaSharp (>= 2.88.7)
- Svg.Skia (>= 1.0.0.18)
- System.IO.Packaging (>= 4.5.0)
- System.Net.Http (>= 4.3.4)
- System.Text.Encoding.CodePages (>= 4.5.0)
-
.NETFramework 4.8
- Pkcs11Interop (>= 5.1.2)
- Portable.BouncyCastle (>= 1.9.0)
- SkiaSharp (>= 2.88.7)
- Svg.Skia (>= 1.0.0.18)
- System.IO.Packaging (>= 4.5.0)
- System.Net.Http (>= 4.3.4)
- System.Text.Encoding.CodePages (>= 4.5.0)
-
net6.0
- Pkcs11Interop (>= 5.1.2)
- Portable.BouncyCastle (>= 1.9.0)
- SkiaSharp (>= 2.88.7)
- Svg.Skia (>= 1.0.0.18)
- System.IO.Packaging (>= 4.5.0)
- System.Net.Http (>= 4.3.4)
- System.Text.Encoding.CodePages (>= 4.5.0)
-
net8.0
- Pkcs11Interop (>= 5.1.2)
- Portable.BouncyCastle (>= 1.9.0)
- SkiaSharp (>= 2.88.7)
- Svg.Skia (>= 1.0.0.18)
- System.IO.Packaging (>= 4.5.0)
- System.Net.Http (>= 4.3.4)
- System.Text.Encoding.CodePages (>= 4.5.0)
-
net9.0
- Pkcs11Interop (>= 5.1.2)
- Portable.BouncyCastle (>= 1.9.0)
- SkiaSharp (>= 2.88.7)
- Svg.Skia (>= 1.0.0.18)
- System.IO.Packaging (>= 4.5.0)
- System.Net.Http (>= 4.3.4)
- System.Text.Encoding.CodePages (>= 4.5.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on SautinSoft.Excel:
Package | Downloads |
---|---|
SautinSoft.Bundle
SautinSoft.Bundle is a package of .NET components for processing WORD, EXCEL, PDF, HTML, Text. With our components you get fast and reliable results in an easy–to–use format. Only the .NET is required, so you can deploy your application easily without having to think about other licenses. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2025.2.6 | 809 | 2/5/2025 |
What's new in the version Excel .Net 2025.2: https://sautinsoft.com/products/excel/help/net/release-notes/