ReadmeNuGet.Xamarin.XlsIO 4.0.0

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

// Install ReadmeNuGet.Xamarin.XlsIO as a Cake Tool
#tool nuget:?package=ReadmeNuGet.Xamarin.XlsIO&version=4.0.0

Syncfusion Xamarin Excel Library

The Syncfusion Xamarin 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.

Xamarin Excel (XlsIO) Library

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

Key features

System Requirements

Getting Started

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

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

using Syncfusion.XlsIo;
using System.IO;

//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.
    MemoryStream stream = new MemoryStream();
    workbook.SaveAs(stream);
    stream.Position = 0;
    Xamarin.Forms.DependencyService.Get<ISave>().SaveAndView("Output.xlsx", "application/msexcel", stream);
}

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

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.0 228 3/14/2022

Summary of changes made in this release of the package.