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

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

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 (Preview), Flutter, Xamarin, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI (Preview), 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 Versions
Universal Windows Platform uap uap10.0
Compatible target framework(s)
Additional computed target framework(s)
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 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 UWP Cell Grid control and more.

Syncfusion.SfSpreadsheet.UWP 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 UWP Spreadsheet library and more.

Syncfusion.ExcelChartToImageConverter.UWP 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 UWP ExcelChart To Image Converter and more.

Syncfusion.PivotTableExport.UWP 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 UWP Pivot Table Export control and more.

Syncfusion.DataGridExcelExport.UWP 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 UWP DataGridExport control and more.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
21.1.35 46 3/23/2023
20.4.0.54 229 3/13/2023
20.4.0.53 254 3/7/2023
20.4.0.52 322 2/28/2023
20.4.0.51 385 2/21/2023
20.4.0.50 442 2/14/2023
20.4.0.49 461 2/7/2023
20.4.0.48 539 2/1/2023
20.4.0.44 631 1/18/2023
20.4.0.43 717 1/10/2023
20.4.0.42 731 1/4/2023
20.4.0.41 778 12/29/2022
20.4.0.40 769 12/28/2022
20.4.0.38 963 12/21/2022
20.3.0.61 880 12/12/2022
20.3.0.60 907 12/6/2022
20.3.0.59 1,063 11/29/2022
20.3.0.58 1,070 11/22/2022
20.3.0.57 1,184 11/15/2022
20.3.0.56 1,269 11/8/2022
20.3.0.52 1,520 10/27/2022
20.3.0.50 1,656 10/18/2022
20.3.0.49 1,750 10/11/2022
20.3.0.48 1,754 10/5/2022
20.3.0.47 1,928 9/29/2022
20.2.0.50 1,870 9/20/2022
20.2.0.49 1,874 9/13/2022
20.2.0.48 1,906 9/6/2022
20.2.0.46 2,002 8/30/2022
20.2.0.45 1,986 8/23/2022
20.2.0.44 1,958 8/16/2022
20.2.0.43 2,875 8/8/2022
20.2.0.40 2,108 7/26/2022
20.2.0.39 2,069 7/19/2022
20.2.0.38 2,057 7/12/2022
20.2.0.36 6,434 6/30/2022
20.1.0.61 2,026 6/20/2022
20.1.0.60 2,019 6/14/2022
20.1.0.59 2,411 6/6/2022
20.1.0.58 2,233 5/30/2022
20.1.0.57 2,118 5/23/2022
20.1.0.56 2,152 5/17/2022
20.1.0.55 2,498 5/12/2022
20.1.0.52 2,313 5/2/2022
20.1.0.51 2,172 4/26/2022
20.1.0.50 2,151 4/19/2022
20.1.0.48 2,271 4/12/2022
20.1.0.47 2,207 4/4/2022
19.4.0.56 3,086 3/14/2022
19.4.0.55 2,171 3/8/2022
19.4.0.54 2,143 2/28/2022
19.4.0.53 2,164 2/22/2022
19.4.0.52 2,093 2/15/2022
19.4.0.50 2,146 2/8/2022
19.4.0.48 2,143 1/31/2022
19.4.0.47 2,109 1/24/2022
19.4.0.43 2,401 1/18/2022
19.4.0.42 1,553 1/10/2022
19.4.0.41 1,127 1/4/2022
19.4.0.40 1,080 12/28/2021
19.4.0.38 1,131 12/17/2021
19.3.0.59 1,066 12/14/2021
19.3.0.57 1,102 12/7/2021
19.3.0.56 1,662 11/29/2021
19.3.0.55 1,491 11/23/2021
19.3.0.54 1,256 11/17/2021
19.3.0.53 1,325 11/12/2021
19.3.0.48 1,374 11/2/2021
19.3.0.47 1,610 10/26/2021
19.3.0.46 1,359 10/19/2021
19.3.0.45 1,540 10/12/2021
19.3.0.44 1,561 10/5/2021
19.3.0.43 1,521 9/30/2021
19.2.0.62 1,583 9/13/2021
19.2.0.60 1,501 9/7/2021
19.2.0.59 1,617 8/30/2021
19.2.0.57 1,761 8/24/2021
19.2.0.56 1,671 8/17/2021
19.2.0.55 1,640 8/11/2021
19.2.0.51 1,675 8/2/2021
19.2.0.49 1,680 7/26/2021
19.2.0.48 1,691 7/19/2021
19.2.0.47 1,745 7/13/2021
19.2.0.46 1,901 7/6/2021
19.2.0.44 11,485 6/30/2021
19.1.0.69 2,085 6/14/2021
19.1.0.67 1,594 6/7/2021
19.1.0.66 1,555 5/31/2021
19.1.0.65 1,568 5/24/2021
19.1.0.64 1,523 5/19/2021
19.1.0.63 1,546 5/13/2021
19.1.0.59 1,679 5/3/2021
19.1.0.58 1,621 4/26/2021
19.1.0.57 1,666 4/20/2021
19.1.0.56 1,642 4/12/2021
19.1.0.55 1,643 4/6/2021
19.1.0.54 1,630 3/30/2021
18.4.0.49 1,592 3/22/2021
18.4.0.48 1,575 3/16/2021
18.4.0.47 1,956 3/9/2021
18.4.0.46 1,550 3/2/2021
18.4.0.44 1,629 2/23/2021
18.4.0.43 2,530 2/15/2021
18.4.0.42 1,619 2/9/2021
18.4.0.41 1,638 2/2/2021
18.4.0.39 1,618 1/28/2021
18.4.0.35 1,695 1/19/2021
18.4.0.34 1,765 1/12/2021
18.4.0.33 1,665 1/4/2021
18.4.0.32 1,597 12/30/2020
18.4.0.31 1,621 12/22/2020
18.4.0.30 1,714 12/17/2020
18.3.0.53 1,735 12/8/2020
18.3.0.52 1,718 11/30/2020
18.3.0.51 1,793 11/23/2020
18.3.0.50 1,703 11/17/2020
18.3.0.48 1,813 11/10/2020
18.3.0.47 1,766 11/5/2020
18.3.0.44 1,812 10/27/2020
18.3.0.42 1,890 10/20/2020
18.3.0.40 2,041 10/12/2020
18.3.0.38 1,806 10/7/2020
18.3.0.35 8,767 10/1/2020
18.2.0.59 1,809 9/22/2020
18.2.0.58 1,765 9/15/2020
18.2.0.57 1,794 9/8/2020
18.2.0.56 2,008 9/1/2020
18.2.0.55 1,858 8/25/2020
18.2.0.54 1,921 8/18/2020
18.2.0.48 1,855 8/4/2020
18.2.0.47 1,891 7/28/2020
18.2.0.46 1,798 7/21/2020
18.2.0.45 1,871 7/14/2020
18.2.0.44 2,215 7/6/2020
18.1.0.59 1,944 6/23/2020
18.1.0.57 1,880 6/15/2020
18.1.0.56 1,937 6/9/2020
18.1.0.55 1,905 6/2/2020
18.1.0.54 1,883 5/26/2020
18.1.0.53 1,933 5/19/2020
18.1.0.52 3,713 5/13/2020
18.1.0.48 1,966 5/5/2020
18.1.0.46 1,905 4/28/2020
18.1.0.45 1,927 4/21/2020
18.1.0.44 1,867 4/14/2020
18.1.0.43 1,960 4/7/2020
18.1.0.42 2,275 4/1/2020
18.1.0.36-beta 869 3/19/2020
17.4.0.55 1,976 3/10/2020
17.4.0.53 2,041 3/3/2020
17.4.0.51 1,908 2/25/2020
17.4.0.50 1,970 2/18/2020
17.4.0.49 1,878 2/11/2020
17.4.0.47 2,004 2/5/2020
17.4.0.46 1,927 1/30/2020
17.4.0.44 2,014 1/21/2020
17.4.0.43 1,952 1/14/2020
17.4.0.41 1,965 1/7/2020
17.4.0.40 2,002 12/24/2019
17.4.0.39 4,514 12/17/2019
17.3.0.34 2,028 12/10/2019
17.3.0.33 1,938 12/4/2019
17.3.0.30 1,863 12/3/2019
17.3.0.29 1,963 11/26/2019
17.3.0.28 2,836 11/18/2019
17.3.0.27 1,943 11/12/2019
17.3.0.26 2,795 11/5/2019
17.3.0.21 1,954 10/29/2019
17.3.0.19 2,008 10/22/2019
17.3.0.17 2,338 10/15/2019
17.3.0.14 2,441 10/3/2019
17.3.0.9-beta 949 9/20/2019
17.2.0.51 2,180 9/10/2019
17.2.0.49 2,002 9/3/2019
17.2.0.47 2,014 8/27/2019
17.2.0.46 2,021 8/22/2019
17.2.0.41 2,087 8/13/2019
17.2.0.40 2,028 8/6/2019
17.2.0.39 2,029 7/30/2019
17.2.0.36 2,123 7/23/2019
17.2.0.35 2,027 7/17/2019
17.2.0.34 3,090 7/11/2019
17.2.0.28-beta 1,075 6/27/2019
17.1.0.53 2,249 6/25/2019
17.1.0.52 3,959 6/18/2019
17.1.0.51 2,074 6/11/2019
17.1.0.50 2,071 6/4/2019
17.1.0.49 2,062 5/28/2019
17.1.0.48 2,106 5/21/2019
17.1.0.47 2,305 5/14/2019
17.1.0.44 2,129 5/7/2019
17.1.0.43 2,128 4/30/2019
17.1.0.42 2,152 4/23/2019
17.1.0.41 3,609 4/16/2019
17.1.0.40 2,107 4/9/2019
17.1.0.38 2,452 3/29/2019
17.1.0.32-beta 1,073 3/13/2019
16.4.0.54 2,517 2/19/2019
16.4.0.53 2,424 2/13/2019
16.4.0.52 2,432 2/5/2019
16.4.0.48 2,236 1/22/2019
16.4.0.47 2,212 1/16/2019
16.4.0.46 2,235 1/8/2019
16.4.0.44 2,358 12/24/2018
16.4.0.42 2,366 12/17/2018
16.4.0.40-beta 1,120 12/10/2018
16.3.0.36 2,413 11/27/2018
16.3.0.35-beta 1,175 11/23/2018
16.3.0.29 2,505 10/30/2018
16.3.0.21 2,554 9/21/2018
16.3.0.17-beta 1,042 9/12/2018
16.2.0.50 2,112 8/28/2018
16.2.0.46 2,419 8/8/2018