Syncfusion.XlsIO.UWP 26.2.12

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 26.2.12                
NuGet\Install-Package Syncfusion.XlsIO.UWP -Version 26.2.12                
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="26.2.12" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.XlsIO.UWP --version 26.2.12                
#r "nuget: Syncfusion.XlsIO.UWP, 26.2.12"                
#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.UWP as a Cake Addin
#addin nuget:?package=Syncfusion.XlsIO.UWP&version=26.2.12

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

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'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, 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
29.1.33 66 3/25/2025
28.2.12 247 3/19/2025
28.2.11 361 3/10/2025
28.2.9 503 3/3/2025
28.2.7 322 2/25/2025
28.2.6 301 2/17/2025
28.2.5 341 2/11/2025
28.2.4 321 2/4/2025
28.2.3 1,028 1/29/2025
28.1.41 550 1/20/2025
28.1.39 331 1/13/2025
28.1.38 333 1/7/2025
28.1.37 299 12/31/2024
28.1.36 322 12/23/2024
28.1.35 421 12/18/2024
28.1.33 332 12/12/2024
27.2.5 766 12/2/2024
27.2.4 314 11/26/2024
27.2.3 338 11/22/2024
27.2.2 318 11/15/2024
27.1.58 334 11/4/2024
27.1.57 333 10/28/2024
27.1.56 332 10/23/2024
27.1.55 302 10/21/2024
27.1.53 396 10/14/2024
27.1.52 335 10/7/2024
27.1.51 338 9/30/2024
27.1.50 334 9/23/2024
27.1.48 377 9/18/2024
26.2.14 486 9/9/2024
26.2.13 432 9/5/2024
26.2.12 377 9/2/2024
26.2.11 410 8/27/2024
26.2.10 429 8/19/2024
26.2.9 434 8/12/2024
26.2.8 374 8/5/2024
26.2.7 264 7/29/2024
26.2.5 246 7/26/2024
26.2.4 312 7/24/2024
26.1.42 393 7/15/2024
26.1.41 390 7/8/2024
26.1.40 405 7/1/2024
26.1.39 421 6/24/2024
26.1.38 485 6/18/2024
26.1.35 4,401 6/11/2024
25.2.7 427 6/3/2024
25.2.6 416 5/28/2024
25.2.5 424 5/21/2024
25.2.4 403 5/14/2024
25.2.3 415 5/8/2024
25.1.42 439 4/29/2024
25.1.41 433 4/23/2024
25.1.40 464 4/15/2024
25.1.39 468 4/8/2024
25.1.38 706 4/1/2024
25.1.37 460 3/26/2024
25.1.35 1,974 3/15/2024
24.2.9 668 3/4/2024
24.2.8 1,450 2/26/2024
24.2.7 946 2/19/2024
24.2.6 690 2/14/2024
24.2.5 735 2/12/2024
24.2.4 776 2/5/2024
24.2.3 755 1/31/2024
24.1.47 826 1/22/2024
24.1.46 826 1/16/2024
24.1.45 924 1/8/2024
24.1.44 980 1/2/2024
24.1.43 927 12/27/2023
24.1.41 996 12/18/2023
23.2.7 1,100 12/6/2023
23.2.6 1,064 11/28/2023
23.2.5 2,053 11/23/2023
23.2.4 1,093 11/20/2023
23.1.44 1,080 11/6/2023
23.1.43 1,312 10/30/2023
23.1.42 1,126 10/23/2023
23.1.41 1,133 10/16/2023
23.1.40 1,898 10/10/2023
23.1.39 1,200 10/4/2023
23.1.38 1,204 9/26/2023
23.1.36 1,223 9/15/2023
22.2.12 1,462 9/5/2023
22.2.11 1,461 8/28/2023
22.2.10 1,577 8/22/2023
22.2.9 1,423 8/14/2023
22.2.8 1,465 8/7/2023
22.2.7 1,629 8/2/2023
22.2.5 1,471 7/27/2023
22.1.39 1,570 7/18/2023
22.1.38 1,472 7/11/2023
22.1.37 1,565 7/3/2023
22.1.36 1,604 6/28/2023
22.1.34 3,556 6/21/2023
21.2.10 1,660 6/12/2023
21.2.9 1,643 6/6/2023
21.2.8 1,624 5/30/2023
21.2.6 1,672 5/22/2023
21.2.5 1,751 5/15/2023
21.2.4 1,951 5/9/2023
21.2.3 1,927 5/3/2023
21.1.41 1,956 4/19/2023
21.1.39 2,077 4/10/2023
21.1.38 2,146 4/3/2023
21.1.37 2,246 3/29/2023
21.1.35 2,423 3/23/2023
20.4.0.54 2,354 3/13/2023
20.4.0.53 2,255 3/7/2023
20.4.0.52 2,316 2/28/2023
20.4.0.51 2,455 2/21/2023
20.4.0.50 2,463 2/14/2023
20.4.0.49 2,511 2/7/2023
20.4.0.48 2,628 2/1/2023
20.4.0.44 2,666 1/18/2023
20.4.0.43 2,783 1/10/2023
20.4.0.42 2,854 1/4/2023
20.4.0.41 2,845 12/29/2022
20.4.0.40 2,794 12/28/2022
20.4.0.38 3,131 12/21/2022
20.3.0.61 2,816 12/12/2022
20.3.0.60 2,918 12/6/2022
20.3.0.59 3,032 11/29/2022
20.3.0.58 3,055 11/22/2022
20.3.0.57 3,164 11/15/2022
20.3.0.56 3,209 11/8/2022
20.3.0.52 3,508 10/27/2022
20.3.0.50 3,661 10/18/2022
20.3.0.49 3,796 10/11/2022
20.3.0.48 3,778 10/5/2022
20.3.0.47 3,919 9/29/2022
20.2.0.50 3,875 9/20/2022
20.2.0.49 3,869 9/13/2022
20.2.0.48 3,921 9/6/2022
20.2.0.46 4,025 8/30/2022
20.2.0.45 4,007 8/23/2022
20.2.0.44 3,888 8/16/2022
20.2.0.43 5,684 8/8/2022
20.2.0.40 4,136 7/26/2022
20.2.0.39 4,088 7/19/2022
20.2.0.38 4,102 7/12/2022
20.2.0.36 34,338 6/30/2022
20.1.0.61 4,099 6/20/2022
20.1.0.60 4,043 6/14/2022
20.1.0.59 4,383 6/6/2022
20.1.0.58 4,233 5/30/2022
20.1.0.57 4,155 5/23/2022
20.1.0.56 4,095 5/17/2022
20.1.0.55 5,792 5/12/2022
20.1.0.52 4,319 5/2/2022
20.1.0.51 4,175 4/26/2022
20.1.0.50 4,197 4/19/2022
20.1.0.48 4,277 4/12/2022
20.1.0.47 4,179 4/4/2022
19.4.0.56 5,086 3/14/2022
19.4.0.55 4,168 3/8/2022
19.4.0.54 4,191 2/28/2022
19.4.0.53 4,226 2/22/2022
19.4.0.52 4,065 2/15/2022
19.4.0.50 4,132 2/8/2022
19.4.0.48 4,174 1/31/2022
19.4.0.47 4,103 1/24/2022
19.4.0.43 4,411 1/18/2022
19.4.0.42 3,366 1/10/2022
19.4.0.41 2,895 1/4/2022
19.4.0.40 2,828 12/28/2021
19.4.0.38 2,839 12/17/2021
19.3.0.59 2,811 12/14/2021
19.3.0.57 2,866 12/7/2021
19.3.0.56 3,466 11/29/2021
19.3.0.55 3,211 11/23/2021
19.3.0.54 3,026 11/17/2021
19.3.0.53 3,102 11/12/2021
19.3.0.48 3,080 11/2/2021
19.3.0.47 3,337 10/26/2021
19.3.0.46 3,048 10/19/2021
19.3.0.45 3,293 10/12/2021
19.3.0.44 3,329 10/5/2021
19.3.0.43 3,214 9/30/2021
19.2.0.62 3,342 9/13/2021
19.2.0.60 3,208 9/7/2021
19.2.0.59 3,451 8/30/2021
19.2.0.57 3,555 8/24/2021
19.2.0.56 3,457 8/17/2021
19.2.0.55 3,410 8/11/2021
19.2.0.51 3,452 8/2/2021
19.2.0.49 3,417 7/26/2021
19.2.0.48 3,434 7/19/2021
19.2.0.47 3,493 7/13/2021
19.2.0.46 3,690 7/6/2021
19.2.0.44 24,067 6/30/2021
19.1.0.69 3,943 6/14/2021
19.1.0.67 3,433 6/7/2021
19.1.0.66 3,298 5/31/2021
19.1.0.65 3,327 5/24/2021
19.1.0.64 3,298 5/19/2021
19.1.0.63 3,321 5/13/2021
19.1.0.59 3,634 5/3/2021
19.1.0.58 3,374 4/26/2021
19.1.0.57 3,465 4/20/2021
19.1.0.56 3,425 4/12/2021
19.1.0.55 3,412 4/6/2021
19.1.0.54 3,463 3/30/2021
18.4.0.49 3,412 3/22/2021
18.4.0.48 3,322 3/16/2021
18.4.0.47 3,729 3/9/2021
18.4.0.46 3,311 3/2/2021
18.4.0.44 3,440 2/23/2021
18.4.0.43 4,452 2/15/2021
18.4.0.42 3,424 2/9/2021
18.4.0.41 3,490 2/2/2021
18.4.0.39 3,451 1/28/2021
18.4.0.35 3,439 1/19/2021
18.4.0.34 3,550 1/12/2021
18.4.0.33 3,450 1/4/2021
18.4.0.32 3,328 12/30/2020
18.4.0.31 3,310 12/22/2020
18.4.0.30 3,485 12/17/2020
18.3.0.53 3,561 12/8/2020
18.3.0.52 3,479 11/30/2020
18.3.0.51 3,540 11/23/2020
18.3.0.50 3,495 11/17/2020
18.3.0.48 3,493 11/10/2020
18.3.0.47 3,585 11/5/2020
18.3.0.44 3,620 10/27/2020
18.3.0.42 3,727 10/20/2020
18.3.0.40 3,904 10/12/2020
18.3.0.38 3,563 10/7/2020
18.3.0.35 17,950 10/1/2020
18.2.0.59 3,554 9/22/2020
18.2.0.58 3,554 9/15/2020
18.2.0.57 3,619 9/8/2020
18.2.0.56 3,787 9/1/2020
18.2.0.55 3,612 8/25/2020
18.2.0.54 3,774 8/18/2020
18.2.0.48 3,653 8/4/2020
18.2.0.47 3,729 7/28/2020
18.2.0.46 3,681 7/21/2020
18.2.0.45 3,791 7/14/2020
18.2.0.44 4,161 7/6/2020
18.1.0.59 3,820 6/23/2020
18.1.0.57 3,753 6/15/2020
18.1.0.56 3,870 6/9/2020
18.1.0.55 3,744 6/2/2020
18.1.0.54 3,784 5/26/2020
18.1.0.53 3,836 5/19/2020
18.1.0.52 6,926 5/13/2020
18.1.0.48 3,843 5/5/2020
18.1.0.46 3,890 4/28/2020
18.1.0.45 3,785 4/21/2020
18.1.0.44 3,814 4/14/2020
18.1.0.43 3,921 4/7/2020
18.1.0.42 4,149 4/1/2020
18.1.0.36-beta 2,159 3/19/2020
17.4.0.55 3,935 3/10/2020
17.4.0.53 3,889 3/3/2020
17.4.0.51 3,834 2/25/2020
17.4.0.50 3,871 2/18/2020
17.4.0.49 3,788 2/11/2020
17.4.0.47 3,961 2/5/2020
17.4.0.46 3,769 1/30/2020
17.4.0.44 3,807 1/21/2020
17.4.0.43 3,923 1/14/2020
17.4.0.41 3,901 1/7/2020
17.4.0.40 3,929 12/24/2019
17.4.0.39 7,975 12/17/2019
17.3.0.34 3,893 12/10/2019
17.3.0.33 3,863 12/4/2019
17.3.0.30 3,730 12/3/2019
17.3.0.29 3,917 11/26/2019
17.3.0.28 4,781 11/18/2019
17.3.0.27 3,840 11/12/2019
17.3.0.26 5,293 11/5/2019
17.3.0.21 3,872 10/29/2019
17.3.0.19 3,970 10/22/2019
17.3.0.17 4,786 10/15/2019
17.3.0.14 4,429 10/3/2019
17.3.0.9-beta 2,143 9/20/2019
17.2.0.51 4,103 9/10/2019
17.2.0.49 3,959 9/3/2019
17.2.0.47 3,905 8/27/2019
17.2.0.46 3,922 8/22/2019
17.2.0.41 4,077 8/13/2019
17.2.0.40 3,966 8/6/2019
17.2.0.39 4,064 7/30/2019
17.2.0.36 3,984 7/23/2019
17.2.0.35 3,995 7/17/2019
17.2.0.34 5,011 7/11/2019
17.2.0.28-beta 2,334 6/27/2019
17.1.0.53 4,095 6/25/2019
17.1.0.52 5,792 6/18/2019
17.1.0.51 4,017 6/11/2019
17.1.0.50 4,011 6/4/2019
17.1.0.49 4,053 5/28/2019
17.1.0.48 4,070 5/21/2019
17.1.0.47 4,278 5/14/2019
17.1.0.44 4,033 5/7/2019
17.1.0.43 4,054 4/30/2019
17.1.0.42 4,087 4/23/2019
17.1.0.41 5,538 4/16/2019
17.1.0.40 3,936 4/9/2019
17.1.0.38 4,335 3/29/2019
17.1.0.32-beta 2,290 3/13/2019
16.4.0.54 4,384 2/19/2019
16.4.0.53 4,288 2/13/2019
16.4.0.52 4,276 2/5/2019
16.4.0.48 3,978 1/22/2019
16.4.0.47 4,121 1/16/2019
16.4.0.46 4,126 1/8/2019
16.4.0.44 4,347 12/24/2018
16.4.0.42 4,348 12/17/2018
16.4.0.40-beta 2,340 12/10/2018
16.3.0.36 4,266 11/27/2018
16.3.0.35-beta 2,423 11/23/2018
16.3.0.29 4,433 10/30/2018
16.3.0.21 4,460 9/21/2018
16.3.0.17-beta 2,266 9/12/2018
16.2.0.50 3,805 8/28/2018
16.2.0.46 4,146 8/8/2018