Syncfusion.Presentation.NET 19.4.0.41

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.Presentation.NET --version 19.4.0.41
                    
NuGet\Install-Package Syncfusion.Presentation.NET -Version 19.4.0.41
                    
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.Presentation.NET" Version="19.4.0.41" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.Presentation.NET" Version="19.4.0.41" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.Presentation.NET" />
                    
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.Presentation.NET --version 19.4.0.41
                    
#r "nuget: Syncfusion.Presentation.NET, 19.4.0.41"
                    
#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.
#:package Syncfusion.Presentation.NET@19.4.0.41
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.Presentation.NET&version=19.4.0.41
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.Presentation.NET&version=19.4.0.41
                    
Install as a Cake Tool

The Syncfusion .NET PowerPoint library (Essential Presentation) allows you to add advanced PowerPoint Presentations processing functionalities to any .NET application and does not require Microsoft PowerPoint application to be installed in the machine. It is a non-UI component that provides a full-fledged document instance model similar to the Microsoft Office COM libraries to iterate with the PowerPoint presentation elements explicitly and perform necessary manipulation. Using this library, you can create, read, edit and convert PowerPoint presentation programmatically.

Key Features

Getting Started

You can fetch the Syncfusion .NET PowerPoint library NuGet by simply running Install-Package Syncfusion.Presentation.NET from the Package Manager Console in Visual Studio.

You can also try some code examples of common use cases from our GitHub Repository.

Create a PowerPoint Presentation programmatically using C#

The following code example illustrates how to create a PowerPoint 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);
	}
}

Manipulate the PowerPoint Presentation programmatically using C#

The following code example illustrates how to manipulate the PowerPoint Presentation.

//Loads or opens a PowerPoint Presentation.
using (FileStream inputStream = new FileStream("Template.pptx", FileMode.Open))
{
	//Opens an existing Presentation from stream.
	using (IPresentation pptxDoc = Presentation.Open(inputStream))
	{
		//To-Do some manipulation.
		//To-Do some manipulation.
		//Creates an instance of memory stream.
		using (MemoryStream stream = new MemoryStream())
		{
			//Saves the Presentation to stream.
			pptxDoc.Save(stream);
		}
	}
}

Supported File Formats

  • Creates, reads, and edits popular text file formats like PPTX, PPTM, POTX and POTM.
  • Converts PowerPoint Presentation also to PDF, and Image.

Compatible Microsoft PowerPoint Versions

  • Microsoft PowerPoint 2007
  • Microsoft PowerPoint 2010
  • Microsoft PowerPoint 2013
  • Microsoft PowerPoint 2016
  • Microsoft PowerPoint 2019

Resources

Support and feedback

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 licnense 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 26,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1600+ components and frameworks for web (Blazor, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and Flutter), mobile (Xamarin, Flutter, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, Flutter 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

© Copyright 2021 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.

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.Presentation.NET:

Package Downloads
Syncfusion.PresentationRenderer.NET

Syncfusion® PowerPoint library is feature-rich and high-performance .NET PowerPoint library that allows you to create, manipulate and convert PowerPoint documents (PPTX, PPTM, POTX and POTM).

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
31.2.5 239 11/3/2025
31.2.4 233 10/28/2025
31.2.3 223 10/21/2025
31.2.2 302 10/15/2025
31.1.23 470 10/6/2025
31.1.22 500 9/30/2025
31.1.21 580 9/22/2025
31.1.20 678 9/16/2025
31.1.19 533 9/11/2025
31.1.18 531 9/10/2025
31.1.17 543 9/5/2025
30.2.7 607 8/25/2025
30.2.6 625 8/18/2025
30.2.5 580 8/13/2025
30.2.4 639 8/7/2025
30.1.42 1,353 7/28/2025
30.1.41 952 7/22/2025
30.1.40 592 7/14/2025
30.1.39 598 7/8/2025
30.1.38 590 7/1/2025
30.1.37 618 6/25/2025
29.2.11 732 6/16/2025
29.2.10 732 6/9/2025
29.2.9 664 6/5/2025
29.2.8 597 6/3/2025
29.2.7 628 5/26/2025
29.2.5 679 5/21/2025
29.2.4 796 5/14/2025
29.1.41 771 5/5/2025
29.1.40 661 4/28/2025
29.1.39 657 4/21/2025
29.1.38 3,821 4/14/2025
29.1.37 642 4/8/2025
29.1.35 683 4/1/2025
29.1.33 1,051 3/25/2025
28.2.12 662 3/19/2025
28.2.11 694 3/10/2025
28.2.9 718 3/4/2025
28.2.7 628 2/25/2025
28.2.6 634 2/17/2025
28.2.5 734 2/11/2025
28.2.4 2,946 2/4/2025
28.2.3 649 1/29/2025
28.1.41 784 1/21/2025
28.1.39 591 1/13/2025
28.1.38 572 1/7/2025
28.1.37 612 12/31/2024
28.1.36 593 12/23/2024
28.1.35 1,485 12/18/2024
28.1.33 749 12/12/2024
27.2.5 712 12/2/2024
27.2.4 618 11/26/2024
27.2.3 703 11/22/2024
27.2.2 656 11/15/2024
27.1.58 1,005 11/4/2024
27.1.57 602 10/28/2024
27.1.56 622 10/23/2024
27.1.55 595 10/21/2024
27.1.53 872 10/14/2024
27.1.52 616 10/7/2024
27.1.51 636 9/30/2024
27.1.50 706 9/24/2024
27.1.48 655 9/18/2024
26.2.14 842 9/9/2024
26.2.13 3,085 9/5/2024
26.2.12 1,049 9/2/2024
26.2.11 880 8/27/2024
26.2.10 655 8/19/2024
26.2.9 693 8/12/2024
26.2.8 2,678 8/5/2024
26.2.7 1,116 7/29/2024
26.2.5 876 7/26/2024
26.2.4 600 7/24/2024
26.1.42 828 7/15/2024
26.1.41 746 7/8/2024
26.1.40 670 7/1/2024
26.1.39 654 6/24/2024
26.1.38 592 6/18/2024
26.1.35 716 6/11/2024
25.2.7 649 6/3/2024
25.2.6 702 5/28/2024
25.2.5 628 5/21/2024
25.2.4 694 5/14/2024
25.2.3 644 5/8/2024
25.1.42 635 4/29/2024
25.1.41 663 4/23/2024
25.1.40 669 4/15/2024
25.1.39 630 4/8/2024
25.1.38 647 4/1/2024
25.1.37 711 3/26/2024
25.1.35 1,230 3/15/2024
24.2.9 1,327 3/4/2024
24.2.8 645 2/26/2024
24.2.7 808 2/19/2024
24.2.6 671 2/14/2024
24.2.5 609 2/12/2024
24.2.4 616 2/6/2024
24.2.3 651 1/31/2024
24.1.47 874 1/22/2024
24.1.46 654 1/16/2024
24.1.45 692 1/9/2024
24.1.44 685 1/3/2024
24.1.43 750 12/27/2023
24.1.41 675 12/18/2023
23.2.7 822 12/6/2023
23.2.6 645 11/28/2023
23.2.5 624 11/23/2023
23.2.4 627 11/20/2023
23.1.44 970 11/6/2023
23.1.43 682 10/30/2023
23.1.42 654 10/23/2023
23.1.41 681 10/16/2023
23.1.40 685 10/10/2023
23.1.39 615 10/4/2023
23.1.38 662 9/26/2023
23.1.36 738 9/15/2023
22.2.12 668 9/5/2023
22.2.11 730 8/28/2023
22.2.10 681 8/22/2023
22.2.9 692 8/14/2023
22.2.8 682 8/7/2023
22.2.7 676 8/2/2023
22.2.5 697 7/27/2023
22.1.39 683 7/18/2023
22.1.38 687 7/11/2023
22.1.37 737 7/3/2023
22.1.36 723 6/28/2023
22.1.34 734 6/21/2023
21.2.10 712 6/13/2023
21.2.9 716 6/6/2023
21.2.8 729 5/30/2023
21.2.6 724 5/22/2023
21.2.5 731 5/15/2023
21.2.4 792 5/9/2023
21.2.3 896 5/3/2023
21.1.41 818 4/19/2023
21.1.39 815 4/10/2023
21.1.38 865 4/3/2023
21.1.37 902 3/29/2023
21.1.35 1,103 3/23/2023
20.4.0.54 908 3/13/2023
20.4.0.53 918 3/7/2023
20.4.0.52 948 2/28/2023
20.4.0.51 894 2/21/2023
20.4.0.50 913 2/14/2023
20.4.0.49 939 2/7/2023
20.4.0.48 972 2/1/2023
20.4.0.44 1,047 1/18/2023
20.4.0.43 1,059 1/10/2023
20.4.0.42 1,005 1/4/2023
20.4.0.41 1,065 12/29/2022
20.4.0.40 987 12/28/2022
20.4.0.38 1,164 12/21/2022
20.3.0.61 1,032 12/13/2022
20.3.0.60 1,043 12/6/2022
20.3.0.59 1,049 11/29/2022
20.3.0.58 1,040 11/22/2022
20.3.0.57 1,086 11/15/2022
20.3.0.56 1,142 11/8/2022
20.3.0.52 978 10/27/2022
20.3.0.50 922 10/18/2022
20.3.0.49 958 10/11/2022
20.3.0.48 875 10/5/2022
20.3.0.47 933 9/29/2022
20.2.0.50 951 9/20/2022
20.2.0.49 914 9/13/2022
20.2.0.48 934 9/6/2022
20.2.0.46 961 8/30/2022
20.2.0.45 943 8/23/2022
20.2.0.44 969 8/16/2022
20.2.0.43 932 8/8/2022
20.2.0.40 1,116 7/26/2022
20.2.0.39 981 7/19/2022
20.2.0.38 982 7/12/2022
20.2.0.36 1,091 6/30/2022
20.1.0.61 1,004 6/21/2022
20.1.0.60 954 6/14/2022
20.1.0.59 974 6/7/2022
20.1.0.58 1,282 5/31/2022
20.1.0.57 1,009 5/24/2022
20.1.0.56 971 5/17/2022
20.1.0.55 1,143 5/12/2022
20.1.0.52 1,066 5/3/2022
20.1.0.51 1,016 4/26/2022
20.1.0.50 1,038 4/19/2022
20.1.0.48 1,030 4/12/2022
20.1.0.47 1,163 4/4/2022
19.4.0.56 1,032 3/15/2022
19.4.0.55 1,004 3/8/2022
19.4.0.54 1,039 3/1/2022
19.4.0.53 1,089 2/22/2022
19.4.0.52 997 2/15/2022
19.4.0.50 1,011 2/8/2022
19.4.0.48 1,115 1/31/2022
19.4.0.47 998 1/25/2022
19.4.0.43 1,045 1/18/2022
19.4.0.42 967 1/11/2022
19.4.0.41 819 1/4/2022
19.4.0.40 851 12/28/2021
19.4.0.38 1,137 12/17/2021