Syncfusion.XlsIO.UWP 29.2.5

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.XlsIO.UWP --version 29.2.5
                    
NuGet\Install-Package Syncfusion.XlsIO.UWP -Version 29.2.5
                    
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.UWP" Version="29.2.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.XlsIO.UWP" Version="29.2.5" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.XlsIO.UWP" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Syncfusion.XlsIO.UWP --version 29.2.5
                    
#r "nuget: Syncfusion.XlsIO.UWP, 29.2.5"
                    
#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.
#:package Syncfusion.XlsIO.UWP@29.2.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.XlsIO.UWP&version=29.2.5
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.XlsIO.UWP&version=29.2.5
                    
Install as a Cake Tool

Syncfusion® UWP Excel Library

The Syncfusion® UWP 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.

UWP Excel (XlsIO) library

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

Key features

System Requirements

Getting Started

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

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

using Syncfusion.XlsIO;
using Windows.Storage.Pickers;
using Windows.Storage;
using Windows.UI;

//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.
    //Initializes FileSavePicker
    FileSavePicker savePicker = new FileSavePicker();
    savePicker.SuggestedStartLocation = PickerLocationId.Desktop;
    savePicker.SuggestedFileName = "Output";
    savePicker.FileTypeChoices.Add("Excel Files", new List<string>() { ".xlsx" });
    //Creates a storage file from FileSavePicker
    StorageFile storageFile = await savePicker.PickSaveFileAsync();
    //Saves changes to the specified storage file
    await workbook.SaveAsAsync(storageFile);
}

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® licensed software, including this component, is subject to the terms and conditions of Syncfusion® 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 29,000 customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1800+ components and frameworks for web (Blazor, Flutter, ASP.NET Core, ASP.NET MVC, ASP.NET Web Forms, JavaScript, Angular, React, Vue, and jQuery), mobile (.NET MAUI, Flutter, Xamarin, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI, Flutter, Xamarin, 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.
Universal Windows Platform uap was computed.  uap10.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on Syncfusion.XlsIO.UWP:

Package Downloads
Syncfusion.SfCellGrid.UWP

This package provides the functionality to utilize the features of Syncfusion® UWP Cell Grid control and more.

Syncfusion.SfSpreadsheet.UWP

This package provides the functionality to utilize the features of Syncfusion® UWP Spreadsheet library and more.

Syncfusion.PivotTableExport.UWP

This package provides the functionality to utilize the features of Syncfusion® UWP Pivot Table Export control and more.

Syncfusion.ExcelChartToImageConverter.UWP

This package provides the functionality to utilize the features of Syncfusion® UWP ExcelChart To Image Converter and more.

Syncfusion.DataGridExcelExport.UWP

This package provides the functionality to utilize the features of Syncfusion® UWP DataGridExport control and more.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
31.1.23 535 10/6/2025
31.1.22 538 9/30/2025
31.1.21 529 9/22/2025
31.1.20 661 9/16/2025
31.1.19 516 9/11/2025
31.1.18 487 9/9/2025
31.1.17 478 9/5/2025
30.2.7 704 8/25/2025
30.2.6 607 8/18/2025
30.2.5 617 8/13/2025
30.2.4 808 8/7/2025
30.1.42 627 7/28/2025
30.1.41 1,157 7/22/2025
30.1.40 799 7/14/2025
30.1.39 800 7/8/2025
30.1.38 795 7/1/2025
30.1.37 863 6/25/2025
29.2.11 873 6/16/2025
29.2.10 932 6/9/2025
29.2.9 814 6/5/2025
29.2.8 810 6/3/2025
29.2.7 928 5/26/2025
29.2.5 839 5/20/2025
29.2.4 904 5/14/2025
29.1.41 1,030 5/5/2025
29.1.40 850 4/28/2025
29.1.39 855 4/21/2025
29.1.38 898 4/14/2025
29.1.37 865 4/8/2025
29.1.35 848 4/1/2025
29.1.33 1,182 3/25/2025
28.2.12 798 3/19/2025
28.2.11 890 3/10/2025
28.2.9 1,199 3/3/2025
28.2.7 872 2/25/2025
28.2.6 865 2/17/2025
28.2.5 915 2/11/2025
28.2.4 854 2/4/2025
28.2.3 5,648 1/29/2025
28.1.41 1,091 1/20/2025
28.1.39 858 1/13/2025
28.1.38 873 1/7/2025
28.1.37 838 12/31/2024
28.1.36 971 12/23/2024
28.1.35 962 12/18/2024
28.1.33 873 12/12/2024
27.2.5 1,811 12/2/2024
27.2.4 848 11/26/2024
27.2.3 884 11/22/2024
27.2.2 838 11/15/2024
27.1.58 846 11/4/2024
27.1.57 859 10/28/2024
27.1.56 872 10/23/2024
27.1.55 830 10/21/2024
27.1.53 953 10/14/2024
27.1.52 846 10/7/2024
27.1.51 853 9/30/2024
27.1.50 851 9/23/2024
27.1.48 919 9/18/2024
26.2.14 1,039 9/9/2024
26.2.13 958 9/5/2024
26.2.12 915 9/2/2024
26.2.11 945 8/27/2024
26.2.10 980 8/19/2024
26.2.9 991 8/12/2024
26.2.8 899 8/5/2024
26.2.7 805 7/29/2024
26.2.5 783 7/26/2024
26.2.4 850 7/24/2024
26.1.42 939 7/15/2024
26.1.41 906 7/8/2024
26.1.40 939 7/1/2024
26.1.39 967 6/24/2024
26.1.38 1,031 6/18/2024
26.1.35 5,497 6/11/2024
25.2.7 964 6/3/2024
25.2.6 962 5/28/2024
25.2.5 970 5/21/2024
25.2.4 940 5/14/2024
25.2.3 963 5/8/2024
25.1.42 982 4/29/2024
25.1.41 973 4/23/2024
25.1.40 1,003 4/15/2024
25.1.39 1,024 4/8/2024
25.1.38 1,251 4/1/2024
25.1.37 1,014 3/26/2024
25.1.35 2,515 3/15/2024
24.2.9 1,197 3/4/2024
24.2.8 2,004 2/26/2024
24.2.7 1,494 2/19/2024
24.2.6 1,245 2/14/2024
24.2.5 1,252 2/12/2024
24.2.4 1,330 2/5/2024
24.2.3 1,308 1/31/2024
24.1.47 1,354 1/22/2024
24.1.46 1,355 1/16/2024
24.1.45 1,436 1/8/2024
24.1.44 1,475 1/2/2024
24.1.43 1,463 12/27/2023
24.1.41 1,532 12/18/2023
23.2.7 1,644 12/6/2023
23.2.6 1,604 11/28/2023
23.2.5 2,611 11/23/2023
23.2.4 1,614 11/20/2023
23.1.44 1,606 11/6/2023
23.1.43 1,866 10/30/2023
23.1.42 1,675 10/23/2023
23.1.41 1,659 10/16/2023
23.1.40 2,428 10/10/2023
23.1.39 1,732 10/4/2023
23.1.38 1,738 9/26/2023
23.1.36 1,771 9/15/2023
22.2.12 2,013 9/5/2023
22.2.11 2,017 8/28/2023
22.2.10 2,139 8/22/2023
22.2.9 2,020 8/14/2023
22.2.8 2,034 8/7/2023
22.2.7 2,257 8/2/2023
22.2.5 2,033 7/27/2023
22.1.39 2,124 7/18/2023
22.1.38 2,027 7/11/2023
22.1.37 2,130 7/3/2023
22.1.36 2,160 6/28/2023
22.1.34 4,385 6/21/2023
21.2.10 2,230 6/12/2023
21.2.9 2,195 6/6/2023
21.2.8 2,183 5/30/2023
21.2.6 2,237 5/22/2023
21.2.5 2,322 5/15/2023
21.2.4 2,503 5/9/2023
21.2.3 2,484 5/3/2023
21.1.41 2,524 4/19/2023
21.1.39 2,653 4/10/2023
21.1.38 2,716 4/3/2023
21.1.37 2,842 3/29/2023
21.1.35 2,994 3/23/2023
20.4.0.54 2,909 3/13/2023
20.4.0.53 2,815 3/7/2023
20.4.0.52 2,892 2/28/2023
20.4.0.51 3,012 2/21/2023
20.4.0.50 3,037 2/14/2023
20.4.0.49 3,082 2/7/2023
20.4.0.48 3,196 2/1/2023
20.4.0.44 3,227 1/18/2023
20.4.0.43 3,372 1/10/2023
20.4.0.42 3,425 1/4/2023
20.4.0.41 3,417 12/29/2022
20.4.0.40 3,339 12/28/2022
20.4.0.38 3,715 12/21/2022
20.3.0.61 3,367 12/12/2022
20.3.0.60 3,493 12/6/2022
20.3.0.59 3,605 11/29/2022
20.3.0.58 3,575 11/22/2022
20.3.0.57 3,709 11/15/2022
20.3.0.56 3,794 11/8/2022
20.3.0.52 4,071 10/27/2022
20.3.0.50 4,233 10/18/2022
20.3.0.49 4,392 10/11/2022
20.3.0.48 4,372 10/5/2022
20.3.0.47 4,486 9/29/2022
20.2.0.50 4,439 9/20/2022
20.2.0.49 4,414 9/13/2022
20.2.0.48 4,494 9/6/2022
20.2.0.46 4,599 8/30/2022
20.2.0.45 4,572 8/23/2022
20.2.0.44 4,457 8/16/2022
20.2.0.43 6,240 8/8/2022
20.2.0.40 4,707 7/26/2022
20.2.0.39 4,662 7/19/2022
20.2.0.38 4,679 7/12/2022
20.2.0.36 36,382 6/30/2022
20.1.0.61 4,677 6/20/2022
20.1.0.60 4,616 6/14/2022
20.1.0.59 4,955 6/6/2022
20.1.0.58 4,803 5/30/2022
20.1.0.57 4,733 5/23/2022
20.1.0.56 4,665 5/17/2022
20.1.0.55 6,385 5/12/2022
20.1.0.52 4,893 5/2/2022
20.1.0.51 4,769 4/26/2022
20.1.0.50 4,771 4/19/2022
20.1.0.48 4,848 4/12/2022
20.1.0.47 4,741 4/4/2022
19.4.0.56 5,671 3/14/2022
19.4.0.55 4,740 3/8/2022
19.4.0.54 4,769 2/28/2022
19.4.0.53 4,811 2/22/2022
19.4.0.52 4,662 2/15/2022
19.4.0.50 4,711 2/8/2022
19.4.0.48 4,785 1/31/2022
19.4.0.47 4,666 1/24/2022
19.4.0.43 4,954 1/18/2022
19.4.0.42 3,927 1/10/2022
19.4.0.41 3,470 1/4/2022
19.4.0.40 3,401 12/28/2021
19.4.0.38 3,432 12/17/2021
19.3.0.59 3,386 12/14/2021
19.3.0.57 3,455 12/7/2021
19.3.0.56 4,036 11/29/2021
19.3.0.55 3,778 11/23/2021
19.3.0.54 3,668 11/17/2021
19.3.0.53 3,681 11/12/2021
19.3.0.48 3,672 11/2/2021
19.3.0.47 3,939 10/26/2021
19.3.0.46 3,604 10/19/2021
19.3.0.45 3,870 10/12/2021
19.3.0.44 3,946 10/5/2021
19.3.0.43 3,789 9/30/2021
19.2.0.62 3,926 9/13/2021
19.2.0.60 3,794 9/7/2021
19.2.0.59 4,042 8/30/2021
19.2.0.57 4,131 8/24/2021
19.2.0.56 4,041 8/17/2021
19.2.0.55 4,012 8/11/2021
19.2.0.51 4,022 8/2/2021
19.2.0.49 4,013 7/26/2021
19.2.0.48 4,029 7/19/2021
19.2.0.47 4,090 7/13/2021
19.2.0.46 4,271 7/6/2021
19.2.0.44 25,227 6/30/2021
19.1.0.69 4,570 6/14/2021
19.1.0.67 4,032 6/7/2021
19.1.0.66 3,896 5/31/2021
19.1.0.65 3,896 5/24/2021
19.1.0.64 3,881 5/19/2021
19.1.0.63 3,931 5/13/2021
19.1.0.59 4,274 5/3/2021
19.1.0.58 3,986 4/26/2021
19.1.0.57 4,060 4/20/2021
19.1.0.56 4,024 4/12/2021
19.1.0.55 4,001 4/6/2021
19.1.0.54 4,067 3/30/2021
18.4.0.49 4,009 3/22/2021
18.4.0.48 3,922 3/16/2021
18.4.0.47 4,313 3/9/2021
18.4.0.46 3,884 3/2/2021
18.4.0.44 4,046 2/23/2021
18.4.0.43 5,040 2/15/2021
18.4.0.42 4,011 2/9/2021
18.4.0.41 4,068 2/2/2021
18.4.0.39 4,053 1/28/2021
18.4.0.35 4,044 1/19/2021
18.4.0.34 4,149 1/12/2021
18.4.0.33 4,024 1/4/2021
18.4.0.32 3,911 12/30/2020
18.4.0.31 3,896 12/22/2020
18.4.0.30 4,101 12/17/2020
18.3.0.53 4,162 12/8/2020
18.3.0.52 4,074 11/30/2020
18.3.0.51 4,136 11/23/2020
18.3.0.50 4,071 11/17/2020
18.3.0.48 4,093 11/10/2020
18.3.0.47 4,209 11/5/2020
18.3.0.44 4,226 10/27/2020
18.3.0.42 4,325 10/20/2020
18.3.0.40 4,491 10/12/2020
18.3.0.38 4,166 10/7/2020
18.3.0.35 18,951 10/1/2020
18.2.0.59 4,159 9/22/2020
18.2.0.58 4,152 9/15/2020
18.2.0.57 4,227 9/8/2020
18.2.0.56 4,392 9/1/2020
18.2.0.55 4,169 8/25/2020
18.2.0.54 4,391 8/18/2020
18.2.0.48 4,234 8/4/2020
18.2.0.47 4,310 7/28/2020
18.2.0.46 4,240 7/21/2020
18.2.0.45 4,381 7/14/2020
18.2.0.44 4,767 7/6/2020
18.1.0.59 4,435 6/23/2020
18.1.0.57 4,335 6/15/2020
18.1.0.56 4,444 6/9/2020
18.1.0.55 4,353 6/2/2020
18.1.0.54 4,388 5/26/2020
18.1.0.53 4,430 5/19/2020
18.1.0.52 7,608 5/13/2020
18.1.0.48 4,439 5/5/2020
18.1.0.46 4,495 4/28/2020
18.1.0.45 4,381 4/21/2020
18.1.0.44 4,417 4/14/2020
18.1.0.43 4,528 4/7/2020
18.1.0.42 4,734 4/1/2020
18.1.0.36-beta 2,420 3/19/2020
17.4.0.55 4,539 3/10/2020
17.4.0.53 4,487 3/3/2020
17.4.0.51 4,431 2/25/2020
17.4.0.50 4,464 2/18/2020
17.4.0.49 4,390 2/11/2020
17.4.0.47 4,547 2/5/2020
17.4.0.46 4,364 1/30/2020
17.4.0.44 4,437 1/21/2020
17.4.0.43 4,517 1/14/2020
17.4.0.41 4,504 1/7/2020
17.4.0.40 4,493 12/24/2019
17.4.0.39 8,666 12/17/2019
17.3.0.34 4,496 12/10/2019
17.3.0.33 4,431 12/4/2019
17.3.0.30 4,332 12/3/2019
17.3.0.29 4,535 11/26/2019
17.3.0.28 5,400 11/18/2019
17.3.0.27 4,435 11/12/2019
17.3.0.26 5,927 11/5/2019
17.3.0.21 4,484 10/29/2019
17.3.0.19 4,582 10/22/2019
17.3.0.17 5,396 10/15/2019
17.3.0.14 5,061 10/3/2019
17.3.0.9-beta 2,437 9/20/2019
17.2.0.51 4,701 9/10/2019
17.2.0.49 4,532 9/3/2019
17.2.0.47 4,488 8/27/2019
17.2.0.46 4,491 8/22/2019
17.2.0.41 4,691 8/13/2019
17.2.0.40 4,542 8/6/2019
17.2.0.39 4,631 7/30/2019
17.2.0.36 4,552 7/23/2019
17.2.0.35 4,593 7/17/2019
17.2.0.34 5,627 7/11/2019
17.2.0.28-beta 2,595 6/27/2019
17.1.0.53 4,699 6/25/2019
17.1.0.52 6,377 6/18/2019
17.1.0.51 4,620 6/11/2019
17.1.0.50 4,592 6/4/2019
17.1.0.49 4,636 5/28/2019
17.1.0.48 4,684 5/21/2019
17.1.0.47 4,878 5/14/2019
17.1.0.44 4,633 5/7/2019
17.1.0.43 4,656 4/30/2019
17.1.0.42 4,701 4/23/2019
17.1.0.41 6,125 4/16/2019
17.1.0.40 4,534 4/9/2019
17.1.0.38 4,940 3/29/2019
17.1.0.32-beta 2,565 3/13/2019
16.4.0.54 5,003 2/19/2019
16.4.0.53 4,897 2/13/2019
16.4.0.52 4,891 2/5/2019
16.4.0.48 4,570 1/22/2019
16.4.0.47 4,738 1/16/2019
16.4.0.46 4,736 1/8/2019
16.4.0.44 4,955 12/24/2018
16.4.0.42 4,944 12/17/2018
16.4.0.40-beta 2,598 12/10/2018
16.3.0.36 4,873 11/27/2018
16.3.0.35-beta 2,663 11/23/2018
16.3.0.29 5,047 10/30/2018
16.3.0.21 5,103 9/21/2018
16.3.0.17-beta 2,501 9/12/2018
16.2.0.50 4,385 8/28/2018
16.2.0.46 4,807 8/8/2018