Syncfusion.Xamarin.XlsIORenderer 28.1.36

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.Xamarin.XlsIORenderer --version 28.1.36                
NuGet\Install-Package Syncfusion.Xamarin.XlsIORenderer -Version 28.1.36                
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.Xamarin.XlsIORenderer" Version="28.1.36" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.Xamarin.XlsIORenderer --version 28.1.36                
#r "nuget: Syncfusion.Xamarin.XlsIORenderer, 28.1.36"                
#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.Xamarin.XlsIORenderer as a Cake Addin
#addin nuget:?package=Syncfusion.Xamarin.XlsIORenderer&version=28.1.36

// Install Syncfusion.Xamarin.XlsIORenderer as a Cake Tool
#tool nuget:?package=Syncfusion.Xamarin.XlsIORenderer&version=28.1.36                

Syncfusion® Xamarin Excel To PDF Converter

A PDF is a fixed document used to display document contents uniformly independent of application software, hardware, and operating system. Syncfusion® Xamarin (XlsIO) library converts an Excel document to PDF with just five lines of code. You can prepare your document for long-term archiving by converting it to PDF.

Xamarin Excel To PDF Converter

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

Key features

System Requirements

Getting Started

You can fetch the Syncfusion® .NET Core Excel to PDF converter library NuGet by simply running the command Install-Package Syncfusion.Xamarin.XlsIORenderer from the Package Manager Console in Visual Studio.

Try the following code snippet to convert an Excel document to PDF.

using Syncfusion.XlsIO;
using Syncfusion.XlsIORenderer;
using Syncfusion.Pdf;
using System.IO;
using System.Reflection;

//Initialize ExcelEngine.
using (ExcelEngine excelEngine = new ExcelEngine())
{
    //Initialize IApplication.
    IApplication application = excelEngine.Excel;
    //Set the default version as Xlsx.
    application.DefaultVersion = ExcelVersion.Xlsx;
    //Load an existing workbook into IWorkbook.
    //Gets assembly
    Assembly assembly = typeof(App).GetTypeInfo().Assembly;
    //Gets input Excel document from an embedded resource collection
    Stream excelStream = assembly.GetManifestResourceStream("XamarinSample.Sample.xlsx");
    IWorkbook workbook = application.Workbooks.Open(excelStream);
    //Initialize XlsIO renderer
    XlsIORenderer renderer = new XlsIORenderer;
    //Initialize PDF document
    using (PdfDocument pdfDocument = new PdfDocument())
    {
        //Convert Excel document into PDF document
        pdfDocument = renderer.ConvertToPDF(workbook);
        //Save the PDF document to stream.
        MemoryStream stream = new MemoryStream();
        pdfDocument.Save(stream);
        stream.Position = 0;
        Xamarin.Forms.DependencyService.Get<ISave>().Save("Output.pdf", "application/pdf", 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® 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.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Syncfusion.Xamarin.XlsIORenderer:

Repository Stars
syncfusion/xamarin-demos
This repository contains the Syncfusion Xamarin UI control’s samples and the guide to use them.
Version Downloads Last updated
28.1.38 32 1/7/2025
28.1.37 75 12/31/2024
28.1.36 86 12/23/2024
28.1.35 98 12/18/2024
28.1.33 88 12/12/2024
27.2.5 106 12/2/2024
27.2.4 95 11/26/2024
27.2.3 100 11/22/2024
27.2.2 105 11/15/2024
27.1.58 93 11/4/2024
27.1.57 103 10/28/2024
27.1.56 128 10/23/2024
27.1.55 99 10/21/2024
27.1.53 120 10/14/2024
27.1.52 100 10/7/2024
27.1.51 106 9/30/2024
27.1.50 104 9/23/2024
27.1.48 100 9/18/2024
26.2.14 99 9/9/2024
26.2.13 104 9/5/2024
26.2.12 116 9/2/2024
26.2.11 119 8/27/2024
26.2.10 135 8/19/2024
26.2.9 142 8/12/2024
26.2.8 115 8/5/2024
26.2.7 82 7/29/2024
26.2.5 93 7/26/2024
26.2.4 91 7/24/2024
26.1.42 145 7/15/2024
26.1.41 128 7/8/2024
26.1.40 114 7/1/2024
26.1.39 127 6/24/2024
26.1.38 128 6/18/2024
26.1.35 150 6/11/2024
25.2.7 125 6/3/2024
25.2.6 118 5/28/2024
25.2.5 117 5/21/2024
25.2.4 126 5/14/2024
25.2.3 137 5/8/2024
25.1.42 136 4/29/2024
25.1.41 139 4/23/2024
25.1.40 130 4/15/2024
25.1.39 151 4/8/2024
25.1.38 146 4/1/2024
25.1.37 124 3/26/2024
25.1.35 160 3/15/2024
24.2.9 177 3/4/2024
24.2.8 161 2/26/2024
24.2.7 153 2/19/2024
24.2.6 136 2/14/2024
24.2.5 131 2/12/2024
24.2.4 136 2/5/2024
24.2.3 142 1/31/2024
24.1.47 123 1/22/2024
24.1.46 138 1/16/2024
24.1.45 1,233 1/8/2024
24.1.44 133 1/2/2024
24.1.43 143 12/27/2023
24.1.41 1,339 12/18/2023
23.2.7 1,772 12/6/2023
23.2.6 405 11/28/2023
23.2.5 143 11/23/2023
23.2.4 181 11/20/2023
23.1.44 149 11/6/2023
23.1.43 151 10/30/2023
23.1.42 175 10/23/2023
23.1.41 148 10/16/2023
23.1.40 189 10/10/2023
23.1.39 530 10/4/2023
23.1.38 556 9/26/2023
23.1.36 232 9/15/2023
22.2.12 261 9/5/2023
22.2.11 222 8/28/2023
22.2.10 172 8/22/2023
22.2.9 205 8/14/2023
22.2.8 192 8/7/2023
22.2.7 254 8/2/2023
22.2.5 226 7/27/2023
22.1.39 222 7/18/2023
22.1.38 219 7/11/2023
22.1.37 222 7/3/2023
22.1.36 739 6/28/2023
22.1.34 302 6/21/2023
21.2.10 306 6/13/2023
21.2.9 228 6/6/2023
21.2.8 226 5/30/2023
21.2.6 236 5/22/2023
21.2.5 272 5/15/2023
21.2.4 293 5/9/2023
21.2.3 292 5/3/2023
21.1.41 1,062 4/19/2023
21.1.39 569 4/10/2023
21.1.38 360 4/3/2023
21.1.37 324 3/29/2023
21.1.35 517 3/23/2023
20.4.0.54 379 3/13/2023
20.4.0.53 603 3/7/2023
20.4.0.52 368 2/28/2023
20.4.0.51 372 2/21/2023
20.4.0.50 385 2/14/2023
20.4.0.49 2,637 2/7/2023
20.4.0.48 987 2/1/2023
20.4.0.44 472 1/18/2023
20.4.0.43 443 1/10/2023
20.4.0.42 425 1/4/2023
20.4.0.41 394 12/29/2022
20.4.0.40 381 12/28/2022
20.4.0.38 1,580 12/21/2022
20.3.0.61 398 12/12/2022
20.3.0.60 401 12/6/2022
20.3.0.59 566 11/29/2022
20.3.0.58 409 11/22/2022
20.3.0.57 480 11/15/2022
20.3.0.56 489 11/8/2022
20.3.0.52 604 10/27/2022
20.3.0.50 530 10/18/2022
20.3.0.49 4,081 10/11/2022
20.3.0.48 598 10/5/2022
20.3.0.47 573 9/29/2022
20.2.0.50 534 9/20/2022
20.2.0.49 628 9/13/2022
20.2.0.48 547 9/6/2022
20.2.0.46 566 8/30/2022
20.2.0.45 536 8/23/2022
20.2.0.44 544 8/16/2022
20.2.0.43 790 8/8/2022
20.2.0.40 705 7/26/2022
20.2.0.39 587 7/19/2022
20.2.0.38 555 7/12/2022
20.2.0.36 803 6/30/2022
20.1.0.61 1,243 6/20/2022
20.1.0.60 590 6/14/2022
20.1.0.59 615 6/7/2022
20.1.0.58 580 5/31/2022
20.1.0.57 2,071 5/24/2022
20.1.0.56 648 5/17/2022
20.1.0.55 633 5/12/2022
20.1.0.52 871 5/3/2022
20.1.0.51 792 4/26/2022
20.1.0.50 578 4/19/2022
20.1.0.48 598 4/12/2022
20.1.0.47 697 4/4/2022
19.4.0.56 2,519 3/15/2022
19.4.0.55 664 3/8/2022
19.4.0.54 710 2/28/2022
19.4.0.53 848 2/22/2022
19.4.0.52 771 2/15/2022
19.4.0.50 1,005 2/8/2022
19.4.0.48 32,078 1/31/2022
19.4.0.47 682 1/25/2022
19.4.0.43 748 1/18/2022
19.4.0.42 844 1/11/2022
19.4.0.41 526 1/4/2022
19.4.0.40 487 12/28/2021
19.4.0.38 567 12/17/2021
19.3.0.59 723 12/14/2021
19.3.0.57 431 12/7/2021
19.3.0.56 1,180 11/29/2021
19.3.0.55 519 11/23/2021
19.3.0.54 478 11/17/2021
19.3.0.53 545 11/12/2021
19.3.0.48 1,513 11/3/2021
19.3.0.47 480 10/26/2021
19.3.0.46 512 10/19/2021
19.3.0.45 515 10/12/2021
19.3.0.44 500 10/5/2021
19.3.0.43 623 9/30/2021
19.2.0.62 589 9/13/2021
19.2.0.60 542 9/7/2021
19.2.0.59 557 8/30/2021
19.2.0.57 577 8/24/2021
19.2.0.56 712 8/17/2021
19.2.0.55 606 8/11/2021
19.2.0.51 1,327 8/2/2021
19.2.0.49 628 7/27/2021
19.2.0.48 640 7/19/2021
19.2.0.47 3,634 7/13/2021
19.2.0.46 501 7/6/2021
19.2.0.44 1,258 6/30/2021
19.1.0.69 1,202 6/14/2021
19.1.0.67 565 6/7/2021
19.1.0.66 551 5/31/2021
19.1.0.65 714 5/24/2021
19.1.0.64 743 5/19/2021
19.1.0.63 728 5/13/2021
19.1.0.59 529 5/3/2021
19.1.0.58 527 4/26/2021
19.1.0.57 511 4/20/2021
19.1.0.56 578 4/13/2021
19.1.0.55 578 4/6/2021
19.1.0.54 1,255 3/30/2021
18.4.0.49 893 3/22/2021
18.4.0.48 592 3/16/2021
18.4.0.47 619 3/9/2021
18.4.0.46 2,794 3/2/2021
18.4.0.44 630 2/23/2021
18.4.0.43 614 2/15/2021
18.4.0.42 707 2/9/2021
18.4.0.41 47,733 2/2/2021
18.4.0.39 2,358 1/28/2021
18.4.0.35 635 1/19/2021
18.4.0.34 554 1/12/2021
18.4.0.33 636 1/4/2021
18.4.0.32 512 12/30/2020
18.4.0.31 606 12/22/2020
18.4.0.30 778 12/17/2020
18.3.0.53 1,991 12/8/2020
18.3.0.52 3,987 11/30/2020
18.3.0.51 567 11/23/2020
18.3.0.50 618 11/17/2020
18.3.0.48 1,185 11/10/2020
18.3.0.47 1,043 11/5/2020
18.3.0.44 987 10/27/2020
18.3.0.42 699 10/20/2020
18.3.0.40 1,078 10/12/2020
18.3.0.38 679 10/7/2020
18.3.0.35 779 10/1/2020
18.2.0.59 656 9/22/2020
18.2.0.58 688 9/15/2020
18.2.0.57 558 9/8/2020
18.2.0.56 965 9/1/2020
18.2.0.55 646 8/25/2020
18.2.0.54 656 8/18/2020
18.2.0.48 791 8/4/2020
18.2.0.47 657 7/28/2020
18.2.0.46 761 7/21/2020
18.2.0.45 717 7/14/2020
18.2.0.44 973 7/6/2020
18.1.0.59 1,070 6/23/2020
18.1.0.57 677 6/16/2020
18.1.0.56 767 6/9/2020
18.1.0.55 665 6/2/2020
18.1.0.54 685 5/27/2020
18.1.0.53 713 5/19/2020
18.1.0.52 902 5/13/2020
18.1.0.48 718 5/5/2020
18.1.0.46 688 4/28/2020
18.1.0.45 711 4/21/2020
18.1.0.44 700 4/14/2020
18.1.0.43 727 4/7/2020
18.1.0.42 888 4/1/2020
18.1.0.36-beta 417 3/19/2020
17.4.0.55 935 3/10/2020
17.4.0.53 813 3/3/2020
17.4.0.51 1,887 2/25/2020
17.4.0.50 753 2/18/2020
17.4.0.49 684 2/11/2020
17.4.0.47 655 2/5/2020
17.4.0.46 712 1/30/2020
17.4.0.44 810 1/21/2020
17.4.0.43 735 1/14/2020
17.4.0.41 927 1/7/2020
17.4.0.40 752 12/24/2019
17.4.0.39 1,139 12/17/2019
17.3.0.34 789 12/10/2019
17.3.0.33 736 12/4/2019
17.3.0.30 676 12/3/2019
17.3.0.29 739 11/26/2019
17.3.0.28 728 11/19/2019
17.3.0.27 1,360 11/12/2019
17.3.0.26 1,408 11/5/2019
17.3.0.21 784 10/29/2019
17.3.0.19 792 10/22/2019
17.3.0.17 759 10/15/2019
17.3.0.14 1,087 10/3/2019
17.3.0.9-beta 495 9/20/2019
17.2.0.51 1,050 9/10/2019
17.2.0.49 760 9/3/2019
17.2.0.47 790 8/27/2019
17.2.0.46 941 8/22/2019
17.2.0.41 9,834 8/13/2019
17.2.0.40 795 8/6/2019
17.2.0.39 716 7/30/2019
17.2.0.36 756 7/23/2019
17.2.0.35 746 7/17/2019
17.2.0.34 2,122 7/11/2019
17.2.0.28-beta 461 6/27/2019
17.1.0.53 920 6/25/2019
17.1.0.52 825 6/18/2019
17.1.0.51 777 6/11/2019
17.1.0.50 763 6/4/2019
17.1.0.49 800 5/28/2019
17.1.0.48 2,239 5/21/2019
17.1.0.47 1,104 5/14/2019
17.1.0.44 1,445 5/7/2019
17.1.0.43 775 4/30/2019
17.1.0.42 846 4/23/2019
17.1.0.41 788 4/16/2019
17.1.0.40 779 4/9/2019
17.1.0.38 2,918 3/29/2019
17.1.0.32-beta 504 3/13/2019
16.4.0.54 1,120 2/19/2019
16.4.0.53 965 2/13/2019
16.4.0.52 1,334 2/5/2019
16.4.0.48 894 1/22/2019
16.4.0.47 945 1/16/2019
16.4.0.46 953 1/8/2019
16.4.0.44 1,275 12/24/2018
16.4.0.42 1,264 12/17/2018
16.4.0.40-beta 603 12/10/2018
16.3.0.36 1,108 11/27/2018
16.3.0.35-beta 613 11/23/2018
16.3.0.29 1,080 10/30/2018
16.3.0.21 1,737 9/21/2018
16.3.0.17-beta 776 9/12/2018