Syncfusion.XlsIO.UWP 28.1.33

Prefix Reserved
dotnet add package Syncfusion.XlsIO.UWP --version 28.1.33                
NuGet\Install-Package Syncfusion.XlsIO.UWP -Version 28.1.33                
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="28.1.33" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.XlsIO.UWP --version 28.1.33                
#r "nuget: Syncfusion.XlsIO.UWP, 28.1.33"                
#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=28.1.33

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

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
28.1.33 113 12/12/2024
27.2.5 370 12/2/2024
27.2.4 298 11/26/2024
27.2.3 303 11/22/2024
27.2.2 300 11/15/2024
27.1.58 312 11/4/2024
27.1.57 316 10/28/2024
27.1.56 314 10/23/2024
27.1.55 285 10/21/2024
27.1.53 370 10/14/2024
27.1.52 322 10/7/2024
27.1.51 324 9/30/2024
27.1.50 321 9/23/2024
27.1.48 361 9/18/2024
26.2.14 452 9/9/2024
26.2.13 419 9/5/2024
26.2.12 365 9/2/2024
26.2.11 398 8/27/2024
26.2.10 418 8/19/2024
26.2.9 423 8/12/2024
26.2.8 361 8/5/2024
26.2.7 242 7/29/2024
26.2.5 235 7/26/2024
26.2.4 298 7/24/2024
26.1.42 379 7/15/2024
26.1.41 378 7/8/2024
26.1.40 393 7/1/2024
26.1.39 408 6/24/2024
26.1.38 475 6/18/2024
26.1.35 2,925 6/11/2024
25.2.7 407 6/3/2024
25.2.6 408 5/28/2024
25.2.5 413 5/21/2024
25.2.4 390 5/14/2024
25.2.3 404 5/8/2024
25.1.42 429 4/29/2024
25.1.41 422 4/23/2024
25.1.40 456 4/15/2024
25.1.39 460 4/8/2024
25.1.38 696 4/1/2024
25.1.37 452 3/26/2024
25.1.35 1,941 3/15/2024
24.2.9 659 3/4/2024
24.2.8 1,273 2/26/2024
24.2.7 930 2/19/2024
24.2.6 660 2/14/2024
24.2.5 726 2/12/2024
24.2.4 767 2/5/2024
24.2.3 745 1/31/2024
24.1.47 815 1/22/2024
24.1.46 815 1/16/2024
24.1.45 915 1/8/2024
24.1.44 967 1/2/2024
24.1.43 915 12/27/2023
24.1.41 986 12/18/2023
23.2.7 1,089 12/6/2023
23.2.6 1,053 11/28/2023
23.2.5 2,043 11/23/2023
23.2.4 1,064 11/20/2023
23.1.44 1,072 11/6/2023
23.1.43 1,303 10/30/2023
23.1.42 1,117 10/23/2023
23.1.41 1,120 10/16/2023
23.1.40 1,889 10/10/2023
23.1.39 1,189 10/4/2023
23.1.38 1,194 9/26/2023
23.1.36 1,208 9/15/2023
22.2.12 1,451 9/5/2023
22.2.11 1,449 8/28/2023
22.2.10 1,569 8/22/2023
22.2.9 1,406 8/14/2023
22.2.8 1,453 8/7/2023
22.2.7 1,549 8/2/2023
22.2.5 1,452 7/27/2023
22.1.39 1,559 7/18/2023
22.1.38 1,461 7/11/2023
22.1.37 1,557 7/3/2023
22.1.36 1,594 6/28/2023
22.1.34 3,490 6/21/2023
21.2.10 1,641 6/12/2023
21.2.9 1,626 6/6/2023
21.2.8 1,606 5/30/2023
21.2.6 1,659 5/22/2023
21.2.5 1,733 5/15/2023
21.2.4 1,934 5/9/2023
21.2.3 1,912 5/3/2023
21.1.41 1,939 4/19/2023
21.1.39 2,058 4/10/2023
21.1.38 2,131 4/3/2023
21.1.37 2,229 3/29/2023
21.1.35 2,401 3/23/2023
20.4.0.54 2,338 3/13/2023
20.4.0.53 2,240 3/7/2023
20.4.0.52 2,299 2/28/2023
20.4.0.51 2,432 2/21/2023
20.4.0.50 2,423 2/14/2023
20.4.0.49 2,494 2/7/2023
20.4.0.48 2,612 2/1/2023
20.4.0.44 2,648 1/18/2023
20.4.0.43 2,767 1/10/2023
20.4.0.42 2,837 1/4/2023
20.4.0.41 2,828 12/29/2022
20.4.0.40 2,775 12/28/2022
20.4.0.38 3,114 12/21/2022
20.3.0.61 2,797 12/12/2022
20.3.0.60 2,897 12/6/2022
20.3.0.59 3,011 11/29/2022
20.3.0.58 3,034 11/22/2022
20.3.0.57 3,143 11/15/2022
20.3.0.56 3,190 11/8/2022
20.3.0.52 3,488 10/27/2022
20.3.0.50 3,636 10/18/2022
20.3.0.49 3,777 10/11/2022
20.3.0.48 3,759 10/5/2022
20.3.0.47 3,898 9/29/2022
20.2.0.50 3,852 9/20/2022
20.2.0.49 3,846 9/13/2022
20.2.0.48 3,900 9/6/2022
20.2.0.46 3,999 8/30/2022
20.2.0.45 3,986 8/23/2022
20.2.0.44 3,867 8/16/2022
20.2.0.43 5,662 8/8/2022
20.2.0.40 4,114 7/26/2022
20.2.0.39 4,049 7/19/2022
20.2.0.38 4,072 7/12/2022
20.2.0.36 34,160 6/30/2022
20.1.0.61 4,077 6/20/2022
20.1.0.60 4,021 6/14/2022
20.1.0.59 4,364 6/6/2022
20.1.0.58 4,211 5/30/2022
20.1.0.57 4,133 5/23/2022
20.1.0.56 4,072 5/17/2022
20.1.0.55 5,759 5/12/2022
20.1.0.52 4,297 5/2/2022
20.1.0.51 4,153 4/26/2022
20.1.0.50 4,174 4/19/2022
20.1.0.48 4,255 4/12/2022
20.1.0.47 4,155 4/4/2022
19.4.0.56 5,064 3/14/2022
19.4.0.55 4,140 3/8/2022
19.4.0.54 4,169 2/28/2022
19.4.0.53 4,199 2/22/2022
19.4.0.52 4,042 2/15/2022
19.4.0.50 4,106 2/8/2022
19.4.0.48 4,152 1/31/2022
19.4.0.47 4,079 1/24/2022
19.4.0.43 4,385 1/18/2022
19.4.0.42 3,343 1/10/2022
19.4.0.41 2,871 1/4/2022
19.4.0.40 2,803 12/28/2021
19.4.0.38 2,815 12/17/2021
19.3.0.59 2,787 12/14/2021
19.3.0.57 2,840 12/7/2021
19.3.0.56 3,439 11/29/2021
19.3.0.55 3,186 11/23/2021
19.3.0.54 2,987 11/17/2021
19.3.0.53 3,077 11/12/2021
19.3.0.48 3,055 11/2/2021
19.3.0.47 3,311 10/26/2021
19.3.0.46 3,023 10/19/2021
19.3.0.45 3,268 10/12/2021
19.3.0.44 3,305 10/5/2021
19.3.0.43 3,189 9/30/2021
19.2.0.62 3,315 9/13/2021
19.2.0.60 3,182 9/7/2021
19.2.0.59 3,425 8/30/2021
19.2.0.57 3,527 8/24/2021
19.2.0.56 3,431 8/17/2021
19.2.0.55 3,385 8/11/2021
19.2.0.51 3,428 8/2/2021
19.2.0.49 3,392 7/26/2021
19.2.0.48 3,406 7/19/2021
19.2.0.47 3,469 7/13/2021
19.2.0.46 3,665 7/6/2021
19.2.0.44 24,029 6/30/2021
19.1.0.69 3,919 6/14/2021
19.1.0.67 3,408 6/7/2021
19.1.0.66 3,273 5/31/2021
19.1.0.65 3,303 5/24/2021
19.1.0.64 3,273 5/19/2021
19.1.0.63 3,297 5/13/2021
19.1.0.59 3,591 5/3/2021
19.1.0.58 3,349 4/26/2021
19.1.0.57 3,439 4/20/2021
19.1.0.56 3,398 4/12/2021
19.1.0.55 3,380 4/6/2021
19.1.0.54 3,436 3/30/2021
18.4.0.49 3,385 3/22/2021
18.4.0.48 3,295 3/16/2021
18.4.0.47 3,702 3/9/2021
18.4.0.46 3,284 3/2/2021
18.4.0.44 3,411 2/23/2021
18.4.0.43 4,409 2/15/2021
18.4.0.42 3,395 2/9/2021
18.4.0.41 3,463 2/2/2021
18.4.0.39 3,423 1/28/2021
18.4.0.35 3,412 1/19/2021
18.4.0.34 3,523 1/12/2021
18.4.0.33 3,422 1/4/2021
18.4.0.32 3,303 12/30/2020
18.4.0.31 3,284 12/22/2020
18.4.0.30 3,458 12/17/2020
18.3.0.53 3,532 12/8/2020
18.3.0.52 3,451 11/30/2020
18.3.0.51 3,515 11/23/2020
18.3.0.50 3,464 11/17/2020
18.3.0.48 3,467 11/10/2020
18.3.0.47 3,551 11/5/2020
18.3.0.44 3,591 10/27/2020
18.3.0.42 3,698 10/20/2020
18.3.0.40 3,877 10/12/2020
18.3.0.38 3,536 10/7/2020
18.3.0.35 17,915 10/1/2020
18.2.0.59 3,521 9/22/2020
18.2.0.58 3,525 9/15/2020
18.2.0.57 3,590 9/8/2020
18.2.0.56 3,758 9/1/2020
18.2.0.55 3,584 8/25/2020
18.2.0.54 3,696 8/18/2020
18.2.0.48 3,617 8/4/2020
18.2.0.47 3,703 7/28/2020
18.2.0.46 3,655 7/21/2020
18.2.0.45 3,763 7/14/2020
18.2.0.44 4,130 7/6/2020
18.1.0.59 3,793 6/23/2020
18.1.0.57 3,723 6/15/2020
18.1.0.56 3,840 6/9/2020
18.1.0.55 3,713 6/2/2020
18.1.0.54 3,756 5/26/2020
18.1.0.53 3,804 5/19/2020
18.1.0.52 6,892 5/13/2020
18.1.0.48 3,811 5/5/2020
18.1.0.46 3,854 4/28/2020
18.1.0.45 3,755 4/21/2020
18.1.0.44 3,772 4/14/2020
18.1.0.43 3,869 4/7/2020
18.1.0.42 4,120 4/1/2020
18.1.0.36-beta 2,125 3/19/2020
17.4.0.55 3,862 3/10/2020
17.4.0.53 3,858 3/3/2020
17.4.0.51 3,803 2/25/2020
17.4.0.50 3,840 2/18/2020
17.4.0.49 3,757 2/11/2020
17.4.0.47 3,929 2/5/2020
17.4.0.46 3,737 1/30/2020
17.4.0.44 3,776 1/21/2020
17.4.0.43 3,892 1/14/2020
17.4.0.41 3,872 1/7/2020
17.4.0.40 3,897 12/24/2019
17.4.0.39 7,943 12/17/2019
17.3.0.34 3,861 12/10/2019
17.3.0.33 3,829 12/4/2019
17.3.0.30 3,682 12/3/2019
17.3.0.29 3,884 11/26/2019
17.3.0.28 4,752 11/18/2019
17.3.0.27 3,810 11/12/2019
17.3.0.26 5,261 11/5/2019
17.3.0.21 3,840 10/29/2019
17.3.0.19 3,927 10/22/2019
17.3.0.17 4,754 10/15/2019
17.3.0.14 4,369 10/3/2019
17.3.0.9-beta 2,119 9/20/2019
17.2.0.51 4,072 9/10/2019
17.2.0.49 3,927 9/3/2019
17.2.0.47 3,875 8/27/2019
17.2.0.46 3,891 8/22/2019
17.2.0.41 4,045 8/13/2019
17.2.0.40 3,937 8/6/2019
17.2.0.39 4,030 7/30/2019
17.2.0.36 3,952 7/23/2019
17.2.0.35 3,959 7/17/2019
17.2.0.34 4,978 7/11/2019
17.2.0.28-beta 2,310 6/27/2019
17.1.0.53 4,061 6/25/2019
17.1.0.52 5,760 6/18/2019
17.1.0.51 3,982 6/11/2019
17.1.0.50 3,979 6/4/2019
17.1.0.49 4,020 5/28/2019
17.1.0.48 4,038 5/21/2019
17.1.0.47 4,245 5/14/2019
17.1.0.44 4,001 5/7/2019
17.1.0.43 4,021 4/30/2019
17.1.0.42 4,048 4/23/2019
17.1.0.41 5,505 4/16/2019
17.1.0.40 3,903 4/9/2019
17.1.0.38 4,303 3/29/2019
17.1.0.32-beta 2,263 3/13/2019
16.4.0.54 4,348 2/19/2019
16.4.0.53 4,255 2/13/2019
16.4.0.52 4,242 2/5/2019
16.4.0.48 3,947 1/22/2019
16.4.0.47 4,087 1/16/2019
16.4.0.46 4,076 1/8/2019
16.4.0.44 4,313 12/24/2018
16.4.0.42 4,310 12/17/2018
16.4.0.40-beta 2,312 12/10/2018
16.3.0.36 4,233 11/27/2018
16.3.0.35-beta 2,394 11/23/2018
16.3.0.29 4,386 10/30/2018
16.3.0.21 4,416 9/21/2018
16.3.0.17-beta 2,230 9/12/2018
16.2.0.50 3,752 8/28/2018
16.2.0.46 4,076 8/8/2018