Syncfusion.XlsIO.NET 25.1.35

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Syncfusion.XlsIO.NET --version 25.1.35
NuGet\Install-Package Syncfusion.XlsIO.NET -Version 25.1.35
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Syncfusion.XlsIO.NET" Version="25.1.35" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.XlsIO.NET --version 25.1.35
#r "nuget: Syncfusion.XlsIO.NET, 25.1.35"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Syncfusion.XlsIO.NET as a Cake Addin
#addin nuget:?package=Syncfusion.XlsIO.NET&version=25.1.35

// Install Syncfusion.XlsIO.NET as a Cake Tool
#tool nuget:?package=Syncfusion.XlsIO.NET&version=25.1.35

Syncfusion .NET Excel Library

The Syncfusion .NET Excel (XlsIO) library is a feature-rich and high-performance .NET Excel library that is used to create, read, and edit Excel documents programmatically without Microsoft Office dependencies.

.NET Excel Library

Features Overview | Docs | API Reference | Online Demo | GitHub Examples | Blogs | Support | Forums | Feedback

Key features

System Requirements

Getting Started

You can fetch the Syncfusion .NET Core Excel library NuGet by simply running the command Install-Package Syncfusion.XlsIO.NET from the Package Manager Console in Visual Studio.

Try the following code snippet to create a simple Excel document.

using Syncfusion.XlsIO;
using System.IO;

//Initialize ExcelEngine.
using (ExcelEngine excelEngine = new ExcelEngine())
{
    //Initialize IApplication.
    IApplication application = excelEngine.Excel;
    //Set the default version as Xlsx.
    application.DefaultVersion = ExcelVersion.Xlsx;
    //Create a new workbook with one worksheet.
    IWorkbook workbook = application.Workbooks.Create(1);
    //Get the worksheet into IWorksheet.
    IWorksheet worksheet = workbook.Worksheets[0];
    //Set a value to Excel cell.
    worksheet.Range["A1"].Value = "Hello World";
    //Save the Excel document.
    FileStream stream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite);
    workbook.SaveAs(stream);
    stream.Dispose();
}

For more information to get started, refer to our Getting Started Documentation page.

License

This is a commercial product and requires a paid license for possession or use. Syncfusion�s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. You can purchase a license here or start a free 30-day trial here.

About Syncfusion

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion has more than 27,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1700+ components and frameworks for web (Blazor, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and Flutter), mobile (Xamarin, Flutter, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, Flutter and UWP). We provide ready-to-deploy enterprise software for dashboards, reports, data integration, and big data processing. Many customers have saved millions in licensing fees by deploying our software.


sales@syncfusion.com | www.syncfusion.com | Toll Free: 1-888-9 DOTNET

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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 is compatible.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Syncfusion.XlsIO.NET:

Package Downloads
Syncfusion.XlsIORenderer.NET The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The Syncfusion XlsIO renderer is a .NET Standard library that allows you to convert Excel documents to Images/PDFs in .NET applications without any Microsoft Office dependencies.

Syncfusion.GridExport.WinUI The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package provides the functionality to utilize the features of Syncfusion WinUI GridExport control and more.

Syncfusion.Maui.DataGridExport The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Syncfusion DataGridExport is a .Net library for exporting the SfDataGrid to excel and pdf formats.

DPMDEV.RFSLib

Library of functions relating to internal project

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Syncfusion.XlsIO.NET:

Repository Stars
syncfusion/maui-demos
This repository contains the Syncfusion .NET MAUI control’s samples and the guide to use them
Version Downloads Last updated
25.1.35 231 3/15/2024
24.2.9 739 3/4/2024
24.2.8 768 2/26/2024
24.2.7 857 2/19/2024
24.2.6 455 2/14/2024
24.2.5 617 2/12/2024
24.2.4 438 2/6/2024
24.2.3 5,575 1/31/2024
24.1.47 592 1/22/2024
24.1.46 1,022 1/16/2024
24.1.45 1,617 1/9/2024
24.1.44 723 1/3/2024
24.1.43 568 12/27/2023
24.1.41 3,566 12/18/2023
23.2.7 1,500 12/6/2023
23.2.6 776 11/28/2023
23.2.5 676 11/23/2023
23.2.4 2,083 11/20/2023
23.1.44 1,795 11/6/2023
23.1.43 1,061 10/30/2023
23.1.42 5,761 10/23/2023
23.1.41 739 10/16/2023
23.1.40 1,472 10/10/2023
23.1.39 765 10/4/2023
23.1.38 1,102 9/26/2023
23.1.36 5,747 9/15/2023
22.2.12 1,163 9/5/2023
22.2.11 2,711 8/28/2023
22.2.10 1,065 8/22/2023
22.2.9 1,036 8/14/2023
22.2.8 1,734 8/7/2023
22.2.7 2,604 8/2/2023
22.2.5 2,854 7/27/2023
22.1.39 1,581 7/18/2023
22.1.38 1,121 7/11/2023
22.1.37 1,267 7/3/2023
22.1.36 1,591 6/28/2023
22.1.34 2,084 6/21/2023
21.2.10 1,110 6/13/2023
21.2.9 953 6/6/2023
21.2.8 1,373 5/30/2023
21.2.6 2,509 5/22/2023
21.2.5 1,896 5/15/2023
21.2.4 1,201 5/9/2023
21.2.3 2,266 5/3/2023
21.1.41 1,265 4/19/2023
21.1.39 1,297 4/10/2023
21.1.38 1,243 4/3/2023
21.1.37 2,886 3/29/2023
21.1.35 1,601 3/23/2023
20.4.0.54 1,531 3/13/2023
20.4.0.53 1,177 3/7/2023
20.4.0.52 1,261 2/28/2023
20.4.0.51 1,565 2/21/2023
20.4.0.50 1,233 2/14/2023
20.4.0.49 1,167 2/7/2023
20.4.0.48 3,468 2/1/2023
20.4.0.44 1,727 1/18/2023
20.4.0.43 1,384 1/10/2023
20.4.0.42 1,372 1/4/2023
20.4.0.41 1,470 12/29/2022
20.4.0.40 1,276 12/28/2022
20.4.0.38 1,548 12/21/2022
20.3.0.61 1,614 12/13/2022
20.3.0.60 1,429 12/6/2022
20.3.0.59 1,587 11/29/2022
20.3.0.58 2,491 11/22/2022
20.3.0.57 1,567 11/15/2022
20.3.0.56 1,533 11/8/2022
20.3.0.52 1,474 10/27/2022
20.3.0.50 2,237 10/18/2022
20.3.0.49 1,334 10/11/2022
20.3.0.48 1,209 10/5/2022
20.3.0.47 3,786 9/29/2022
20.2.0.50 1,134 9/20/2022
20.2.0.49 1,099 9/13/2022
20.2.0.48 1,087 9/6/2022
20.2.0.46 1,026 8/30/2022
20.2.0.45 1,005 8/23/2022
20.2.0.44 1,022 8/16/2022
20.2.0.43 1,374 8/8/2022
20.2.0.40 1,162 7/26/2022
20.2.0.39 1,113 7/19/2022
20.2.0.38 2,095 7/12/2022
20.2.0.36 12,492 6/30/2022
20.1.0.61 1,076 6/21/2022
20.1.0.60 1,035 6/14/2022
20.1.0.59 2,431 6/7/2022
20.1.0.58 1,312 5/31/2022
20.1.0.57 1,021 5/24/2022
20.1.0.56 1,044 5/17/2022
20.1.0.55 1,522 5/12/2022
20.1.0.52 1,849 5/3/2022
20.1.0.51 1,042 4/26/2022
20.1.0.50 1,117 4/19/2022
20.1.0.48 1,037 4/12/2022
20.1.0.47 1,276 4/4/2022
19.4.0.56 1,239 3/15/2022
19.4.0.55 1,067 3/8/2022
19.4.0.54 1,034 3/1/2022
19.4.0.53 1,343 2/22/2022
19.4.0.52 1,124 2/15/2022
19.4.0.50 1,301 2/8/2022
19.4.0.48 1,088 1/31/2022
19.4.0.47 1,037 1/25/2022
19.4.0.43 1,314 1/18/2022
19.4.0.42 1,064 1/11/2022
19.4.0.41 831 1/4/2022
19.4.0.38 1,748 12/17/2021