Syncfusion.Xamarin.Presentation 26.2.4

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.Xamarin.Presentation --version 26.2.4
                    
NuGet\Install-Package Syncfusion.Xamarin.Presentation -Version 26.2.4
                    
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.Presentation" Version="26.2.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.Xamarin.Presentation" Version="26.2.4" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.Xamarin.Presentation" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Syncfusion.Xamarin.Presentation --version 26.2.4
                    
#r "nuget: Syncfusion.Xamarin.Presentation, 26.2.4"
                    
#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.
#addin nuget:?package=Syncfusion.Xamarin.Presentation&version=26.2.4
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.Xamarin.Presentation&version=26.2.4
                    
Install as a Cake Tool

Syncfusion Xamarin PowerPoint library

The Syncfusion Xamarin PowerPoint library (Essential Presentation) is a feature-rich and high-performance .NET PowerPoint library that is used to create, read, edit and convert PowerPoint presentation programmatically.

Xamarin PowerPoint 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 .NET Core PowerPoint library NuGet by simply running the command Install-Package Syncfusion.Xamarin.Presentation from the Package Manager Console in Visual Studio.

Try the following code example to create a hello world PowerPoint Presentation.

//Namespaces to create PowerPoint
using Syncfusion.Presentation;

//Creates a new instance of PowerPoint presentation.
using (IPresentation pptxDoc = Presentation.Create())
{
	//Adds a slide to the PowerPoint Presentation.
	ISlide firstSlide = pptxDoc.Slides.Add(SlideLayoutType.Blank);
	
	//Adds a textbox in a slide by specifying its position and size.
	IShape textShape = firstSlide.AddTextBox(100, 75, 756, 200);
	
	//Adds a new paragraph with text.
	textShape.TextBody.AddParagraph("Hello World");
	
	//Creates an instance of memory stream.
	using (MemoryStream stream = new MemoryStream())
	{
	  //Saves the Presentation to stream.
	  pptxDoc.Save(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, 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.


[email protected] | 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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 (1)

Showing the top 1 NuGet packages that depend on Syncfusion.Xamarin.Presentation:

Package Downloads
Syncfusion.Xamarin.PresentationRenderer

This package provides the functionality to utilize the features of Syncfusion® Xamarin PowerPoint Slide to PDF/Image converter and more.

GitHub repositories (1)

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

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
29.2.11 127 6/16/2025
29.2.10 272 6/9/2025
29.2.9 146 6/5/2025
29.2.8 157 6/3/2025
29.2.7 166 5/26/2025
29.2.5 162 5/21/2025
29.2.4 245 5/14/2025
29.1.41 159 5/5/2025
29.1.40 166 4/28/2025
29.1.39 188 4/21/2025
29.1.38 220 4/14/2025
29.1.37 174 4/8/2025
29.1.35 172 4/1/2025
29.1.33 514 3/25/2025
28.2.12 171 3/19/2025
28.2.11 182 3/10/2025
28.2.9 253 3/4/2025
28.2.7 140 2/25/2025
28.2.6 146 2/17/2025
28.2.5 144 2/11/2025
28.2.4 135 2/4/2025
28.2.3 143 1/29/2025
28.1.41 125 1/20/2025
28.1.39 131 1/13/2025
28.1.38 130 1/7/2025
28.1.37 127 12/31/2024
28.1.36 123 12/23/2024
28.1.35 147 12/18/2024
28.1.33 143 12/12/2024
27.2.5 142 12/2/2024
27.2.4 136 11/26/2024
27.2.3 139 11/22/2024
27.2.2 133 11/15/2024
27.1.58 144 11/4/2024
27.1.57 140 10/28/2024
27.1.56 135 10/23/2024
27.1.55 125 10/21/2024
27.1.53 155 10/14/2024
27.1.52 139 10/7/2024
27.1.51 146 9/30/2024
27.1.50 131 9/23/2024
27.1.48 154 9/18/2024
26.2.14 157 9/9/2024
26.2.13 166 9/5/2024
26.2.12 158 9/2/2024
26.2.11 168 8/27/2024
26.2.10 173 8/19/2024
26.2.9 188 8/12/2024
26.2.8 147 8/5/2024
26.2.7 106 7/29/2024
26.2.5 130 7/26/2024
26.2.4 126 7/24/2024
26.1.42 171 7/15/2024
26.1.41 148 7/8/2024
26.1.40 164 7/1/2024
26.1.39 161 6/24/2024
26.1.38 170 6/18/2024
26.1.35 165 6/11/2024
25.2.7 183 6/3/2024
25.2.6 162 5/28/2024
25.2.5 174 5/21/2024
25.2.4 144 5/14/2024
25.2.3 209 5/8/2024
25.1.42 191 4/29/2024
25.1.41 176 4/23/2024
25.1.40 170 4/15/2024
25.1.39 163 4/8/2024
25.1.38 211 4/1/2024
25.1.37 195 3/26/2024
25.1.35 600 3/15/2024
24.2.9 208 3/4/2024
24.2.8 190 2/26/2024
24.2.7 228 2/19/2024
24.2.6 176 2/14/2024
24.2.5 162 2/12/2024
24.2.4 173 2/5/2024
24.2.3 184 1/31/2024
24.1.47 170 1/22/2024
24.1.46 178 1/16/2024
24.1.45 189 1/8/2024
24.1.44 175 1/2/2024
24.1.43 156 12/27/2023
24.1.41 2,718 12/18/2023
23.2.7 252 12/6/2023
23.2.6 206 11/28/2023
23.2.5 191 11/23/2023
23.2.4 198 11/20/2023
23.1.44 220 11/6/2023
23.1.43 197 10/30/2023
23.1.42 214 10/23/2023
23.1.41 211 10/16/2023
23.1.40 227 10/10/2023
23.1.39 236 10/4/2023
23.1.38 579 9/26/2023
23.1.36 251 9/15/2023
22.2.12 258 9/5/2023
22.2.11 271 8/28/2023
22.2.10 239 8/22/2023
22.2.9 254 8/14/2023
22.2.8 245 8/7/2023
22.2.7 235 8/2/2023
22.2.5 310 7/27/2023
22.1.39 298 7/18/2023
22.1.38 241 7/11/2023
22.1.37 290 7/3/2023
22.1.36 271 6/28/2023
22.1.34 251 6/21/2023
21.2.10 312 6/13/2023
21.2.9 282 6/6/2023
21.2.8 331 5/30/2023
21.2.6 325 5/22/2023
21.2.5 352 5/15/2023
21.2.4 347 5/9/2023
21.2.3 368 5/3/2023
21.1.41 387 4/19/2023
21.1.39 443 4/10/2023
21.1.38 440 4/3/2023
21.1.37 436 3/29/2023
21.1.35 587 3/23/2023
20.4.0.54 542 3/13/2023
20.4.0.53 500 3/7/2023
20.4.0.52 522 2/28/2023
20.4.0.51 563 2/21/2023
20.4.0.50 550 2/14/2023
20.4.0.49 2,826 2/7/2023
20.4.0.48 654 2/1/2023
20.4.0.44 649 1/18/2023
20.4.0.43 648 1/10/2023
20.4.0.42 700 1/4/2023
20.4.0.41 628 12/29/2022
20.4.0.40 620 12/28/2022
20.4.0.38 660 12/21/2022
20.3.0.61 651 12/12/2022
20.3.0.60 669 12/6/2022
20.3.0.59 818 11/29/2022
20.3.0.58 708 11/22/2022
20.3.0.57 731 11/15/2022
20.3.0.56 762 11/8/2022
20.3.0.52 810 10/27/2022
20.3.0.50 838 10/18/2022
20.3.0.49 887 10/11/2022
20.3.0.48 815 10/5/2022
20.3.0.47 933 9/29/2022
20.2.0.50 895 9/20/2022
20.2.0.49 925 9/13/2022
20.2.0.48 932 9/6/2022
20.2.0.46 916 8/30/2022
20.2.0.45 921 8/23/2022
20.2.0.44 908 8/16/2022
20.2.0.43 977 8/8/2022
20.2.0.40 947 7/26/2022
20.2.0.39 937 7/19/2022
20.2.0.38 909 7/12/2022
20.2.0.36 989 6/30/2022
20.1.0.61 944 6/20/2022
20.1.0.60 940 6/14/2022
20.1.0.59 940 6/7/2022
20.1.0.58 969 5/31/2022
20.1.0.57 2,555 5/24/2022
20.1.0.56 1,010 5/17/2022
20.1.0.55 1,002 5/12/2022
20.1.0.52 987 5/3/2022
20.1.0.51 1,012 4/26/2022
20.1.0.50 1,286 4/19/2022
20.1.0.48 932 4/12/2022
20.1.0.47 1,009 4/4/2022
19.4.0.56 1,196 3/15/2022
19.4.0.55 1,079 3/8/2022
19.4.0.54 1,112 2/28/2022
19.4.0.53 1,074 2/22/2022
19.4.0.52 1,107 2/15/2022
19.4.0.50 1,145 2/8/2022
19.4.0.48 3,553 1/31/2022
19.4.0.47 1,066 1/25/2022
19.4.0.43 1,094 1/18/2022
19.4.0.42 935 1/11/2022
19.4.0.41 697 1/4/2022
19.4.0.40 739 12/28/2021
19.4.0.38 788 12/17/2021
19.3.0.59 719 12/14/2021
19.3.0.57 734 12/7/2021
19.3.0.56 1,470 11/29/2021
19.3.0.55 842 11/23/2021
19.3.0.54 753 11/17/2021
19.3.0.53 777 11/12/2021
19.3.0.48 821 11/3/2021
19.3.0.47 797 10/26/2021
19.3.0.46 802 10/19/2021
19.3.0.45 810 10/12/2021
19.3.0.44 822 10/5/2021
19.3.0.43 900 9/30/2021
19.2.0.62 841 9/13/2021
19.2.0.60 789 9/7/2021
19.2.0.59 823 8/30/2021
19.2.0.57 836 8/24/2021
19.2.0.56 847 8/17/2021
19.2.0.55 893 8/11/2021
19.2.0.51 1,523 8/2/2021
19.2.0.49 831 7/26/2021
19.2.0.48 813 7/19/2021
19.2.0.47 849 7/13/2021
19.2.0.46 860 7/6/2021
19.2.0.44 1,531 6/30/2021
19.1.0.69 1,471 6/14/2021
19.1.0.67 883 6/7/2021
19.1.0.66 846 5/31/2021
19.1.0.65 824 5/24/2021
19.1.0.64 1,017 5/19/2021
19.1.0.63 936 5/13/2021
19.1.0.59 848 5/3/2021
19.1.0.58 879 4/26/2021
19.1.0.57 862 4/20/2021
19.1.0.56 861 4/13/2021
19.1.0.55 892 4/6/2021
19.1.0.54 1,394 3/30/2021
18.4.0.49 870 3/22/2021
18.4.0.48 801 3/16/2021
18.4.0.47 854 3/9/2021
18.4.0.46 840 3/2/2021
18.4.0.44 913 2/23/2021
18.4.0.43 936 2/15/2021
18.4.0.42 895 2/9/2021
18.4.0.41 43,615 2/2/2021
18.4.0.39 1,050 1/28/2021
18.4.0.35 861 1/19/2021
18.4.0.34 823 1/12/2021
18.4.0.33 918 1/4/2021
18.4.0.32 895 12/30/2020
18.4.0.31 847 12/22/2020
18.4.0.30 1,109 12/17/2020
18.3.0.53 979 12/8/2020
18.3.0.52 4,355 11/30/2020
18.3.0.51 923 11/23/2020
18.3.0.50 928 11/17/2020
18.3.0.48 999 11/10/2020
18.3.0.47 1,278 11/5/2020
18.3.0.44 1,117 10/27/2020
18.3.0.42 986 10/20/2020
18.3.0.40 1,219 10/12/2020
18.3.0.38 1,043 10/7/2020
18.3.0.35 1,051 10/1/2020
18.2.0.59 942 9/22/2020
18.2.0.58 977 9/15/2020
18.2.0.57 892 9/8/2020
18.2.0.56 904 9/1/2020
18.2.0.55 953 8/25/2020
18.2.0.54 996 8/18/2020
18.2.0.48 1,139 8/4/2020
18.2.0.47 1,019 7/28/2020
18.2.0.46 1,011 7/21/2020
18.2.0.45 982 7/14/2020
18.2.0.44 1,245 7/6/2020
18.1.0.59 1,022 6/23/2020
18.1.0.57 967 6/16/2020
18.1.0.56 1,007 6/9/2020
18.1.0.55 969 6/2/2020
18.1.0.54 981 5/27/2020
18.1.0.53 1,021 5/19/2020
18.1.0.52 1,244 5/13/2020
18.1.0.48 1,043 5/5/2020
18.1.0.46 1,033 4/28/2020
18.1.0.45 1,055 4/21/2020
18.1.0.44 1,066 4/14/2020
18.1.0.43 1,085 4/7/2020
18.1.0.42 1,271 4/1/2020
18.1.0.36-beta 608 3/19/2020
17.4.0.55 1,475 3/10/2020
17.4.0.53 1,176 3/3/2020
17.4.0.51 2,280 2/25/2020
17.4.0.50 1,093 2/18/2020
17.4.0.49 1,042 2/11/2020
17.4.0.47 1,007 2/5/2020
17.4.0.46 993 1/30/2020
17.4.0.44 1,131 1/21/2020
17.4.0.43 1,036 1/14/2020
17.4.0.41 1,056 1/7/2020
17.4.0.40 1,097 12/24/2019
17.4.0.39 1,489 12/17/2019
17.3.0.34 1,056 12/10/2019
17.3.0.33 1,032 12/4/2019
17.3.0.30 1,087 12/3/2019
17.3.0.29 1,135 11/26/2019
17.3.0.28 1,071 11/19/2019
17.3.0.27 1,052 11/12/2019
17.3.0.26 1,083 11/5/2019
17.3.0.21 1,097 10/29/2019
17.3.0.19 1,120 10/22/2019
17.3.0.17 1,112 10/15/2019
17.3.0.14 1,387 10/3/2019
17.3.0.9-beta 676 9/20/2019
17.2.0.51 1,250 9/10/2019
17.2.0.49 1,103 9/3/2019
17.2.0.47 1,131 8/27/2019
17.2.0.46 1,262 8/22/2019
17.2.0.41 1,118 8/13/2019
17.2.0.40 1,207 8/6/2019
17.2.0.39 1,167 7/30/2019
17.2.0.36 1,171 7/23/2019
17.2.0.35 1,114 7/17/2019
17.2.0.34 1,351 7/11/2019
17.2.0.28-beta 674 6/27/2019
17.1.0.53 1,197 6/25/2019
17.1.0.52 1,152 6/18/2019
17.1.0.51 1,122 6/11/2019
17.1.0.50 1,129 6/4/2019
17.1.0.49 1,170 5/28/2019
17.1.0.48 1,185 5/21/2019
17.1.0.47 1,359 5/14/2019
17.1.0.44 1,910 5/7/2019
17.1.0.43 1,146 4/30/2019
17.1.0.42 1,256 4/23/2019
17.1.0.41 1,335 4/16/2019
17.1.0.40 1,187 4/9/2019
17.1.0.38 1,386 3/29/2019
17.1.0.32-beta 941 3/13/2019
16.4.0.54 1,268 2/19/2019
16.4.0.53 1,055 2/13/2019
16.4.0.52 1,407 2/5/2019
16.4.0.48 1,086 1/22/2019
16.4.0.47 1,004 1/16/2019
16.4.0.46 1,272 1/8/2019
16.4.0.44 1,033 12/24/2018
16.4.0.42 1,411 12/17/2018
16.4.0.40-beta 657 12/10/2018
16.3.0.36 1,021 11/27/2018
16.3.0.35-beta 699 11/23/2018
16.3.0.29 1,318 10/30/2018
16.3.0.21 1,297 9/21/2018
16.3.0.17-beta 761 9/12/2018
16.2.0.50 1,077 8/28/2018
16.2.0.46 1,192 8/6/2018
16.2.0.42 2,064 6/29/2018
16.2.0.41 1,374 6/25/2018
16.1.0.37 1,557 4/25/2018
16.1.0.32 1,414 3/29/2018
16.1.0.26 1,252 3/7/2018
16.1.0.24 1,301 2/22/2018
15.4.0.20 1,471 12/28/2017
15.4.0.17 1,647 12/11/2017