Syncfusion.Xamarin.XlsIORenderer 28.1.35

Prefix Reserved
dotnet add package Syncfusion.Xamarin.XlsIORenderer --version 28.1.35                
NuGet\Install-Package Syncfusion.Xamarin.XlsIORenderer -Version 28.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.Xamarin.XlsIORenderer" Version="28.1.35" />                
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.35                
#r "nuget: Syncfusion.Xamarin.XlsIORenderer, 28.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.Xamarin.XlsIORenderer as a Cake Addin
#addin nuget:?package=Syncfusion.Xamarin.XlsIORenderer&version=28.1.35

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

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. 
.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.35 51 12/18/2024
28.1.33 76 12/12/2024
27.2.5 96 12/2/2024
27.2.4 87 11/26/2024
27.2.3 91 11/22/2024
27.2.2 98 11/15/2024
27.1.58 83 11/4/2024
27.1.57 94 10/28/2024
27.1.56 119 10/23/2024
27.1.55 92 10/21/2024
27.1.53 115 10/14/2024
27.1.52 94 10/7/2024
27.1.51 102 9/30/2024
27.1.50 98 9/23/2024
27.1.48 96 9/18/2024
26.2.14 93 9/9/2024
26.2.13 100 9/5/2024
26.2.12 110 9/2/2024
26.2.11 113 8/27/2024
26.2.10 131 8/19/2024
26.2.9 136 8/12/2024
26.2.8 109 8/5/2024
26.2.7 78 7/29/2024
26.2.5 88 7/26/2024
26.2.4 85 7/24/2024
26.1.42 141 7/15/2024
26.1.41 124 7/8/2024
26.1.40 110 7/1/2024
26.1.39 122 6/24/2024
26.1.38 124 6/18/2024
26.1.35 145 6/11/2024
25.2.7 121 6/3/2024
25.2.6 114 5/28/2024
25.2.5 113 5/21/2024
25.2.4 122 5/14/2024
25.2.3 133 5/8/2024
25.1.42 132 4/29/2024
25.1.41 135 4/23/2024
25.1.40 126 4/15/2024
25.1.39 147 4/8/2024
25.1.38 140 4/1/2024
25.1.37 120 3/26/2024
25.1.35 156 3/15/2024
24.2.9 173 3/4/2024
24.2.8 157 2/26/2024
24.2.7 149 2/19/2024
24.2.6 128 2/14/2024
24.2.5 127 2/12/2024
24.2.4 132 2/5/2024
24.2.3 138 1/31/2024
24.1.47 119 1/22/2024
24.1.46 134 1/16/2024
24.1.45 1,196 1/8/2024
24.1.44 129 1/2/2024
24.1.43 139 12/27/2023
24.1.41 1,189 12/18/2023
23.2.7 1,759 12/6/2023
23.2.6 401 11/28/2023
23.2.5 139 11/23/2023
23.2.4 177 11/20/2023
23.1.44 145 11/6/2023
23.1.43 147 10/30/2023
23.1.42 171 10/23/2023
23.1.41 144 10/16/2023
23.1.40 185 10/10/2023
23.1.39 526 10/4/2023
23.1.38 551 9/26/2023
23.1.36 228 9/15/2023
22.2.12 257 9/5/2023
22.2.11 218 8/28/2023
22.2.10 168 8/22/2023
22.2.9 201 8/14/2023
22.2.8 188 8/7/2023
22.2.7 250 8/2/2023
22.2.5 222 7/27/2023
22.1.39 218 7/18/2023
22.1.38 215 7/11/2023
22.1.37 218 7/3/2023
22.1.36 733 6/28/2023
22.1.34 298 6/21/2023
21.2.10 302 6/13/2023
21.2.9 222 6/6/2023
21.2.8 222 5/30/2023
21.2.6 230 5/22/2023
21.2.5 266 5/15/2023
21.2.4 289 5/9/2023
21.2.3 288 5/3/2023
21.1.41 1,058 4/19/2023
21.1.39 562 4/10/2023
21.1.38 355 4/3/2023
21.1.37 318 3/29/2023
21.1.35 506 3/23/2023
20.4.0.54 375 3/13/2023
20.4.0.53 599 3/7/2023
20.4.0.52 364 2/28/2023
20.4.0.51 366 2/21/2023
20.4.0.50 378 2/14/2023
20.4.0.49 2,630 2/7/2023
20.4.0.48 898 2/1/2023
20.4.0.44 467 1/18/2023
20.4.0.43 438 1/10/2023
20.4.0.42 418 1/4/2023
20.4.0.41 389 12/29/2022
20.4.0.40 374 12/28/2022
20.4.0.38 1,573 12/21/2022
20.3.0.61 393 12/12/2022
20.3.0.60 394 12/6/2022
20.3.0.59 558 11/29/2022
20.3.0.58 400 11/22/2022
20.3.0.57 471 11/15/2022
20.3.0.56 479 11/8/2022
20.3.0.52 597 10/27/2022
20.3.0.50 523 10/18/2022
20.3.0.49 3,971 10/11/2022
20.3.0.48 590 10/5/2022
20.3.0.47 566 9/29/2022
20.2.0.50 525 9/20/2022
20.2.0.49 621 9/13/2022
20.2.0.48 540 9/6/2022
20.2.0.46 559 8/30/2022
20.2.0.45 529 8/23/2022
20.2.0.44 537 8/16/2022
20.2.0.43 783 8/8/2022
20.2.0.40 698 7/26/2022
20.2.0.39 580 7/19/2022
20.2.0.38 548 7/12/2022
20.2.0.36 794 6/30/2022
20.1.0.61 1,236 6/20/2022
20.1.0.60 581 6/14/2022
20.1.0.59 608 6/7/2022
20.1.0.58 573 5/31/2022
20.1.0.57 2,064 5/24/2022
20.1.0.56 639 5/17/2022
20.1.0.55 626 5/12/2022
20.1.0.52 862 5/3/2022
20.1.0.51 782 4/26/2022
20.1.0.50 571 4/19/2022
20.1.0.48 589 4/12/2022
20.1.0.47 689 4/4/2022
19.4.0.56 2,510 3/15/2022
19.4.0.55 657 3/8/2022
19.4.0.54 703 2/28/2022
19.4.0.53 840 2/22/2022
19.4.0.52 762 2/15/2022
19.4.0.50 996 2/8/2022
19.4.0.48 32,066 1/31/2022
19.4.0.47 674 1/25/2022
19.4.0.43 741 1/18/2022
19.4.0.42 835 1/11/2022
19.4.0.41 519 1/4/2022
19.4.0.40 480 12/28/2021
19.4.0.38 558 12/17/2021
19.3.0.59 714 12/14/2021
19.3.0.57 422 12/7/2021
19.3.0.56 1,171 11/29/2021
19.3.0.55 511 11/23/2021
19.3.0.54 471 11/17/2021
19.3.0.53 537 11/12/2021
19.3.0.48 1,504 11/3/2021
19.3.0.47 473 10/26/2021
19.3.0.46 503 10/19/2021
19.3.0.45 506 10/12/2021
19.3.0.44 493 10/5/2021
19.3.0.43 614 9/30/2021
19.2.0.62 581 9/13/2021
19.2.0.60 535 9/7/2021
19.2.0.59 550 8/30/2021
19.2.0.57 570 8/24/2021
19.2.0.56 705 8/17/2021
19.2.0.55 599 8/11/2021
19.2.0.51 1,320 8/2/2021
19.2.0.49 619 7/27/2021
19.2.0.48 633 7/19/2021
19.2.0.47 3,627 7/13/2021
19.2.0.46 492 7/6/2021
19.2.0.44 1,250 6/30/2021
19.1.0.69 1,193 6/14/2021
19.1.0.67 556 6/7/2021
19.1.0.66 543 5/31/2021
19.1.0.65 705 5/24/2021
19.1.0.64 736 5/19/2021
19.1.0.63 721 5/13/2021
19.1.0.59 520 5/3/2021
19.1.0.58 518 4/26/2021
19.1.0.57 502 4/20/2021
19.1.0.56 571 4/13/2021
19.1.0.55 569 4/6/2021
19.1.0.54 1,247 3/30/2021
18.4.0.49 886 3/22/2021
18.4.0.48 584 3/16/2021
18.4.0.47 612 3/9/2021
18.4.0.46 2,787 3/2/2021
18.4.0.44 621 2/23/2021
18.4.0.43 605 2/15/2021
18.4.0.42 700 2/9/2021
18.4.0.41 47,725 2/2/2021
18.4.0.39 2,351 1/28/2021
18.4.0.35 626 1/19/2021
18.4.0.34 546 1/12/2021
18.4.0.33 627 1/4/2021
18.4.0.32 503 12/30/2020
18.4.0.31 597 12/22/2020
18.4.0.30 771 12/17/2020
18.3.0.53 1,982 12/8/2020
18.3.0.52 3,980 11/30/2020
18.3.0.51 560 11/23/2020
18.3.0.50 609 11/17/2020
18.3.0.48 1,178 11/10/2020
18.3.0.47 1,033 11/5/2020
18.3.0.44 980 10/27/2020
18.3.0.42 690 10/20/2020
18.3.0.40 1,070 10/12/2020
18.3.0.38 672 10/7/2020
18.3.0.35 770 10/1/2020
18.2.0.59 647 9/22/2020
18.2.0.58 679 9/15/2020
18.2.0.57 549 9/8/2020
18.2.0.56 956 9/1/2020
18.2.0.55 637 8/25/2020
18.2.0.54 649 8/18/2020
18.2.0.48 784 8/4/2020
18.2.0.47 648 7/28/2020
18.2.0.46 752 7/21/2020
18.2.0.45 708 7/14/2020
18.2.0.44 964 7/6/2020
18.1.0.59 1,063 6/23/2020
18.1.0.57 668 6/16/2020
18.1.0.56 760 6/9/2020
18.1.0.55 658 6/2/2020
18.1.0.54 678 5/27/2020
18.1.0.53 706 5/19/2020
18.1.0.52 895 5/13/2020
18.1.0.48 711 5/5/2020
18.1.0.46 681 4/28/2020
18.1.0.45 706 4/21/2020
18.1.0.44 692 4/14/2020
18.1.0.43 722 4/7/2020
18.1.0.42 881 4/1/2020
18.1.0.36-beta 412 3/19/2020
17.4.0.55 930 3/10/2020
17.4.0.53 806 3/3/2020
17.4.0.51 1,880 2/25/2020
17.4.0.50 748 2/18/2020
17.4.0.49 677 2/11/2020
17.4.0.47 649 2/5/2020
17.4.0.46 706 1/30/2020
17.4.0.44 805 1/21/2020
17.4.0.43 728 1/14/2020
17.4.0.41 922 1/7/2020
17.4.0.40 745 12/24/2019
17.4.0.39 1,134 12/17/2019
17.3.0.34 774 12/10/2019
17.3.0.33 731 12/4/2019
17.3.0.30 671 12/3/2019
17.3.0.29 734 11/26/2019
17.3.0.28 723 11/19/2019
17.3.0.27 1,355 11/12/2019
17.3.0.26 1,403 11/5/2019
17.3.0.21 779 10/29/2019
17.3.0.19 787 10/22/2019
17.3.0.17 754 10/15/2019
17.3.0.14 1,082 10/3/2019
17.3.0.9-beta 490 9/20/2019
17.2.0.51 1,045 9/10/2019
17.2.0.49 754 9/3/2019
17.2.0.47 785 8/27/2019
17.2.0.46 936 8/22/2019
17.2.0.41 9,829 8/13/2019
17.2.0.40 790 8/6/2019
17.2.0.39 710 7/30/2019
17.2.0.36 751 7/23/2019
17.2.0.35 741 7/17/2019
17.2.0.34 2,115 7/11/2019
17.2.0.28-beta 456 6/27/2019
17.1.0.53 915 6/25/2019
17.1.0.52 820 6/18/2019
17.1.0.51 772 6/11/2019
17.1.0.50 758 6/4/2019
17.1.0.49 795 5/28/2019
17.1.0.48 2,234 5/21/2019
17.1.0.47 1,099 5/14/2019
17.1.0.44 1,440 5/7/2019
17.1.0.43 770 4/30/2019
17.1.0.42 840 4/23/2019
17.1.0.41 783 4/16/2019
17.1.0.40 774 4/9/2019
17.1.0.38 2,912 3/29/2019
17.1.0.32-beta 498 3/13/2019
16.4.0.54 1,115 2/19/2019
16.4.0.53 960 2/13/2019
16.4.0.52 1,329 2/5/2019
16.4.0.48 889 1/22/2019
16.4.0.47 940 1/16/2019
16.4.0.46 948 1/8/2019
16.4.0.44 1,270 12/24/2018
16.4.0.42 1,259 12/17/2018
16.4.0.40-beta 597 12/10/2018
16.3.0.36 1,103 11/27/2018
16.3.0.35-beta 609 11/23/2018
16.3.0.29 1,076 10/30/2018
16.3.0.21 1,733 9/21/2018
16.3.0.17-beta 772 9/12/2018