Syncfusion.XlsIO.UWP 31.2.18

Prefix Reserved
dotnet add package Syncfusion.XlsIO.UWP --version 31.2.18
                    
NuGet\Install-Package Syncfusion.XlsIO.UWP -Version 31.2.18
                    
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="31.2.18" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.XlsIO.UWP" Version="31.2.18" />
                    
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 31.2.18
                    
#r "nuget: Syncfusion.XlsIO.UWP, 31.2.18"
                    
#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@31.2.18
                    
#: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=31.2.18
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.XlsIO.UWP&version=31.2.18
                    
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.2.18 0 12/8/2025
31.2.16 950 12/1/2025
31.2.15 486 11/25/2025
31.2.12 697 11/18/2025
31.2.10 591 11/12/2025
31.2.5 656 11/3/2025
31.2.4 623 10/28/2025
31.2.3 623 10/21/2025
31.2.2 702 10/15/2025
31.1.23 829 10/6/2025
31.1.22 821 9/30/2025
31.1.21 815 9/22/2025
31.1.20 942 9/16/2025
31.1.19 814 9/11/2025
31.1.18 786 9/9/2025
31.1.17 783 9/5/2025
30.2.7 1,089 8/25/2025
30.2.6 909 8/18/2025
30.2.5 918 8/13/2025
30.2.4 1,487 8/7/2025
30.1.42 910 7/28/2025
30.1.41 1,435 7/22/2025
30.1.40 1,075 7/14/2025
30.1.39 1,084 7/8/2025
30.1.38 1,077 7/1/2025
30.1.37 1,144 6/25/2025
29.2.11 1,164 6/16/2025
29.2.10 1,218 6/9/2025
29.2.9 1,099 6/5/2025
29.2.8 1,109 6/3/2025
29.2.7 1,209 5/26/2025
29.2.5 1,122 5/20/2025
29.2.4 1,191 5/14/2025
29.1.41 1,311 5/5/2025
29.1.40 1,147 4/28/2025
29.1.39 1,152 4/21/2025
29.1.38 1,179 4/14/2025
29.1.37 1,149 4/8/2025
29.1.35 1,126 4/1/2025
29.1.33 1,465 3/25/2025
28.2.12 1,082 3/19/2025
28.2.11 1,177 3/10/2025
28.2.9 1,487 3/3/2025
28.2.7 1,164 2/25/2025
28.2.6 1,157 2/17/2025
28.2.5 1,194 2/11/2025
28.2.4 1,142 2/4/2025
28.2.3 6,863 1/29/2025
28.1.41 1,372 1/20/2025
28.1.39 1,152 1/13/2025
28.1.38 1,155 1/7/2025
28.1.37 1,127 12/31/2024
28.1.36 1,268 12/23/2024
28.1.35 1,247 12/18/2024
28.1.33 1,170 12/12/2024
27.2.5 2,259 12/2/2024
27.2.4 1,136 11/26/2024
27.2.3 1,173 11/22/2024
27.2.2 1,134 11/15/2024
27.1.58 1,135 11/4/2024
27.1.57 1,141 10/28/2024
27.1.56 1,155 10/23/2024
27.1.55 1,120 10/21/2024
27.1.53 1,239 10/14/2024
27.1.52 1,138 10/7/2024
27.1.51 1,145 9/30/2024
27.1.50 1,144 9/23/2024
27.1.48 1,206 9/18/2024
26.2.14 1,321 9/9/2024
26.2.13 1,243 9/5/2024
26.2.12 1,195 9/2/2024
26.2.11 1,231 8/27/2024
26.2.10 1,261 8/19/2024
26.2.9 1,275 8/12/2024
26.2.8 1,184 8/5/2024
26.2.7 1,087 7/29/2024
26.2.5 1,077 7/26/2024
26.2.4 1,136 7/24/2024
26.1.42 1,222 7/15/2024
26.1.41 1,198 7/8/2024
26.1.40 1,226 7/1/2024
26.1.39 1,254 6/24/2024
26.1.38 1,318 6/18/2024
26.1.35 5,889 6/11/2024
25.2.7 1,257 6/3/2024
25.2.6 1,240 5/28/2024
25.2.5 1,261 5/21/2024
25.2.4 1,220 5/14/2024
25.2.3 1,244 5/8/2024
25.1.42 1,260 4/29/2024
25.1.41 1,251 4/23/2024
25.1.40 1,287 4/15/2024
25.1.39 1,306 4/8/2024
25.1.38 1,535 4/1/2024
25.1.37 1,303 3/26/2024
25.1.35 2,794 3/15/2024
24.2.9 1,476 3/4/2024
24.2.8 2,290 2/26/2024
24.2.7 1,775 2/19/2024
24.2.6 1,531 2/14/2024
24.2.5 1,537 2/12/2024
24.2.4 1,617 2/5/2024
24.2.3 1,584 1/31/2024
24.1.47 1,636 1/22/2024
24.1.46 1,641 1/16/2024
24.1.45 1,717 1/8/2024
24.1.44 1,750 1/2/2024
24.1.43 1,745 12/27/2023
24.1.41 1,809 12/18/2023
23.2.7 1,943 12/6/2023
23.2.6 1,894 11/28/2023
23.2.5 2,894 11/23/2023
23.2.4 1,900 11/20/2023
23.1.44 1,884 11/6/2023
23.1.43 2,142 10/30/2023
23.1.42 1,948 10/23/2023
23.1.41 1,938 10/16/2023
23.1.40 2,704 10/10/2023
23.1.39 2,014 10/4/2023
23.1.38 2,016 9/26/2023
23.1.36 2,050 9/15/2023
22.2.12 2,294 9/5/2023
22.2.11 2,302 8/28/2023
22.2.10 2,413 8/22/2023
22.2.9 2,296 8/14/2023
22.2.8 2,316 8/7/2023
22.2.7 2,532 8/2/2023
22.2.5 2,319 7/27/2023
22.1.39 2,400 7/18/2023
22.1.38 2,309 7/11/2023
22.1.37 2,419 7/3/2023
22.1.36 2,439 6/28/2023
22.1.34 4,709 6/21/2023
21.2.10 2,513 6/12/2023
21.2.9 2,481 6/6/2023
21.2.8 2,470 5/30/2023
21.2.6 2,516 5/22/2023
21.2.5 2,608 5/15/2023
21.2.4 2,785 5/9/2023
21.2.3 2,773 5/3/2023
21.1.41 2,822 4/19/2023
21.1.39 2,936 4/10/2023
21.1.38 3,003 4/3/2023
21.1.37 3,131 3/29/2023
21.1.35 3,288 3/23/2023
20.4.0.54 3,197 3/13/2023
20.4.0.53 3,115 3/7/2023
20.4.0.52 3,180 2/28/2023
20.4.0.51 3,303 2/21/2023
20.4.0.50 3,331 2/14/2023
20.4.0.49 3,372 2/7/2023
20.4.0.48 3,478 2/1/2023
20.4.0.44 3,513 1/18/2023
20.4.0.43 3,658 1/10/2023
20.4.0.42 3,713 1/4/2023
20.4.0.41 3,705 12/29/2022
20.4.0.40 3,627 12/28/2022
20.4.0.38 4,006 12/21/2022
20.3.0.61 3,656 12/12/2022
20.3.0.60 3,791 12/6/2022
20.3.0.59 3,887 11/29/2022
20.3.0.58 3,863 11/22/2022
20.3.0.57 3,994 11/15/2022
20.3.0.56 4,094 11/8/2022
20.3.0.52 4,358 10/27/2022
20.3.0.50 4,529 10/18/2022
20.3.0.49 4,684 10/11/2022
20.3.0.48 4,658 10/5/2022
20.3.0.47 4,772 9/29/2022
20.2.0.50 4,733 9/20/2022
20.2.0.49 4,694 9/13/2022
20.2.0.48 4,791 9/6/2022
20.2.0.46 4,888 8/30/2022
20.2.0.45 4,858 8/23/2022
20.2.0.44 4,751 8/16/2022
20.2.0.43 6,534 8/8/2022
20.2.0.40 4,996 7/26/2022
20.2.0.39 4,977 7/19/2022
20.2.0.38 4,976 7/12/2022
20.2.0.36 37,082 6/30/2022
20.1.0.61 4,974 6/20/2022
20.1.0.60 4,909 6/14/2022
20.1.0.59 5,247 6/6/2022
20.1.0.58 5,090 5/30/2022
20.1.0.57 5,029 5/23/2022
20.1.0.56 4,957 5/17/2022
20.1.0.55 6,681 5/12/2022
20.1.0.52 5,183 5/2/2022
20.1.0.51 5,058 4/26/2022
20.1.0.50 5,067 4/19/2022
20.1.0.48 5,143 4/12/2022
20.1.0.47 5,029 4/4/2022
19.4.0.56 5,961 3/14/2022
19.4.0.55 5,034 3/8/2022
19.4.0.54 5,073 2/28/2022
19.4.0.53 5,111 2/22/2022
19.4.0.52 4,956 2/15/2022
19.4.0.50 5,006 2/8/2022
19.4.0.48 5,079 1/31/2022
19.4.0.47 4,962 1/24/2022
19.4.0.43 5,256 1/18/2022
19.4.0.42 4,219 1/10/2022
19.4.0.41 3,767 1/4/2022
19.4.0.40 3,699 12/28/2021
19.4.0.38 3,724 12/17/2021
19.3.0.59 3,685 12/14/2021
19.3.0.57 3,752 12/7/2021
19.3.0.56 4,333 11/29/2021
19.3.0.55 4,076 11/23/2021
19.3.0.54 3,984 11/17/2021
19.3.0.53 3,984 11/12/2021
19.3.0.48 3,976 11/2/2021
19.3.0.47 4,234 10/26/2021
19.3.0.46 3,899 10/19/2021
19.3.0.45 4,166 10/12/2021
19.3.0.44 4,247 10/5/2021
19.3.0.43 4,095 9/30/2021
19.2.0.62 4,224 9/13/2021
19.2.0.60 4,099 9/7/2021
19.2.0.59 4,338 8/30/2021
19.2.0.57 4,428 8/24/2021
19.2.0.56 4,331 8/17/2021
19.2.0.55 4,304 8/11/2021
19.2.0.51 4,320 8/2/2021
19.2.0.49 4,309 7/26/2021
19.2.0.48 4,329 7/19/2021
19.2.0.47 4,384 7/13/2021
19.2.0.46 4,567 7/6/2021
19.2.0.44 25,729 6/30/2021
19.1.0.69 4,864 6/14/2021
19.1.0.67 4,320 6/7/2021
19.1.0.66 4,188 5/31/2021
19.1.0.65 4,186 5/24/2021
19.1.0.64 4,177 5/19/2021
19.1.0.63 4,220 5/13/2021
19.1.0.59 4,575 5/3/2021
19.1.0.58 4,286 4/26/2021
19.1.0.57 4,352 4/20/2021
19.1.0.56 4,320 4/12/2021
19.1.0.55 4,294 4/6/2021
19.1.0.54 4,361 3/30/2021
18.4.0.49 4,304 3/22/2021
18.4.0.48 4,216 3/16/2021
18.4.0.47 4,613 3/9/2021
18.4.0.46 4,186 3/2/2021
18.4.0.44 4,344 2/23/2021
18.4.0.43 5,336 2/15/2021
18.4.0.42 4,308 2/9/2021
18.4.0.41 4,363 2/2/2021
18.4.0.39 4,349 1/28/2021
18.4.0.35 4,345 1/19/2021
18.4.0.34 4,442 1/12/2021
18.4.0.33 4,325 1/4/2021
18.4.0.32 4,213 12/30/2020
18.4.0.31 4,194 12/22/2020
18.4.0.30 4,406 12/17/2020
18.3.0.53 4,454 12/8/2020
18.3.0.52 4,366 11/30/2020
18.3.0.51 4,442 11/23/2020
18.3.0.50 4,375 11/17/2020
18.3.0.48 4,396 11/10/2020
18.3.0.47 4,512 11/5/2020
18.3.0.44 4,529 10/27/2020
18.3.0.42 4,630 10/20/2020
18.3.0.40 4,786 10/12/2020
18.3.0.38 4,463 10/7/2020
18.3.0.35 19,427 10/1/2020
18.2.0.59 4,461 9/22/2020
18.2.0.58 4,449 9/15/2020
18.2.0.57 4,527 9/8/2020
18.2.0.56 4,695 9/1/2020
18.2.0.55 4,471 8/25/2020
18.2.0.54 4,695 8/18/2020
18.2.0.48 4,545 8/4/2020
18.2.0.47 4,610 7/28/2020
18.2.0.46 4,540 7/21/2020
18.2.0.45 4,687 7/14/2020
18.2.0.44 5,064 7/6/2020
18.1.0.59 4,736 6/23/2020
18.1.0.57 4,634 6/15/2020
18.1.0.56 4,746 6/9/2020
18.1.0.55 4,655 6/2/2020
18.1.0.54 4,693 5/26/2020
18.1.0.53 4,745 5/19/2020
18.1.0.52 7,905 5/13/2020
18.1.0.48 4,736 5/5/2020
18.1.0.46 4,798 4/28/2020
18.1.0.45 4,683 4/21/2020
18.1.0.44 4,716 4/14/2020
18.1.0.43 4,825 4/7/2020
18.1.0.42 5,038 4/1/2020
18.1.0.36-beta 2,460 3/19/2020
17.4.0.55 4,838 3/10/2020
17.4.0.53 4,795 3/3/2020
17.4.0.51 4,741 2/25/2020
17.4.0.50 4,765 2/18/2020
17.4.0.49 4,692 2/11/2020
17.4.0.47 4,849 2/5/2020
17.4.0.46 4,665 1/30/2020
17.4.0.44 4,740 1/21/2020
17.4.0.43 4,816 1/14/2020
17.4.0.41 4,801 1/7/2020
17.4.0.40 4,799 12/24/2019
17.4.0.39 8,988 12/17/2019
17.3.0.34 4,795 12/10/2019
17.3.0.33 4,729 12/4/2019
17.3.0.30 4,637 12/3/2019
17.3.0.29 4,839 11/26/2019
17.3.0.28 5,702 11/18/2019
17.3.0.27 4,741 11/12/2019
17.3.0.26 6,243 11/5/2019
17.3.0.21 4,784 10/29/2019
17.3.0.19 4,890 10/22/2019
17.3.0.17 5,695 10/15/2019
17.3.0.14 5,372 10/3/2019
17.3.0.9-beta 2,474 9/20/2019
17.2.0.51 5,005 9/10/2019
17.2.0.49 4,839 9/3/2019
17.2.0.47 4,790 8/27/2019
17.2.0.46 4,788 8/22/2019
17.2.0.41 4,990 8/13/2019
17.2.0.40 4,843 8/6/2019
17.2.0.39 4,937 7/30/2019
17.2.0.36 4,863 7/23/2019
17.2.0.35 4,890 7/17/2019
17.2.0.34 5,927 7/11/2019
17.2.0.28-beta 2,640 6/27/2019
17.1.0.53 5,001 6/25/2019
17.1.0.52 6,677 6/18/2019
17.1.0.51 4,913 6/11/2019
17.1.0.50 4,895 6/4/2019
17.1.0.49 4,930 5/28/2019
17.1.0.48 4,979 5/21/2019
17.1.0.47 5,181 5/14/2019
17.1.0.44 4,936 5/7/2019
17.1.0.43 4,960 4/30/2019
17.1.0.42 4,999 4/23/2019
17.1.0.41 6,426 4/16/2019
17.1.0.40 4,832 4/9/2019
17.1.0.38 5,236 3/29/2019
17.1.0.32-beta 2,605 3/13/2019
16.4.0.54 5,306 2/19/2019
16.4.0.53 5,195 2/13/2019
16.4.0.52 5,192 2/5/2019
16.4.0.48 4,865 1/22/2019
16.4.0.47 5,038 1/16/2019
16.4.0.46 5,038 1/8/2019
16.4.0.44 5,251 12/24/2018
16.4.0.42 5,246 12/17/2018
16.4.0.40-beta 2,634 12/10/2018
16.3.0.36 5,189 11/27/2018
16.3.0.35-beta 2,698 11/23/2018
16.3.0.29 5,355 10/30/2018
16.3.0.21 5,408 9/21/2018
16.3.0.17-beta 2,534 9/12/2018
16.2.0.50 4,694 8/28/2018
16.2.0.46 5,136 8/8/2018