Syncfusion.Presentation.Net.Core 19.3.0.53

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.Presentation.Net.Core --version 19.3.0.53
NuGet\Install-Package Syncfusion.Presentation.Net.Core -Version 19.3.0.53
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.Core" Version="19.3.0.53" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.Presentation.Net.Core --version 19.3.0.53
#r "nuget: Syncfusion.Presentation.Net.Core, 19.3.0.53"
#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.Presentation.Net.Core as a Cake Addin
#addin nuget:?package=Syncfusion.Presentation.Net.Core&version=19.3.0.53

// Install Syncfusion.Presentation.Net.Core as a Cake Tool
#tool nuget:?package=Syncfusion.Presentation.Net.Core&version=19.3.0.53

The Syncfusion .NET Core PowerPoint library (Essential Presentation) allows you to add advanced PowerPoint Presentations processing functionalities to any .NET Core 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 Core PowerPoint library NuGet by simply running Install-Package Syncfusion.Presentation.Net.Core 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. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.2 is compatible.  netstandard1.3 was computed.  netstandard1.4 is compatible.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net451 was computed.  net452 was computed.  net46 was computed.  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 tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 was computed. 
Windows Store netcore451 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 (4)

Showing the top 4 NuGet packages that depend on Syncfusion.Presentation.Net.Core:

Package Downloads
Syncfusion.PresentationRenderer.Net.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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).

BoldReports.Net.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Syncfusion Bold Reports for ASP.NET Core is a server-side helper package used to build ASP.NET Core Web API services. Key features: • Users can interactively provide report parameter inputs at run time to display reports based on the parameter. • SQL Server RDL specification expressions are supported. • Built-in SQL Query designer with a convenient user interface to create and view relationships between tables easily. • A rich selection of built-in report items, including charts, grids, pivot grids, subreports, textboxes, images, lines, and rectangles for better visual representation of data. • Report viewer supports multilevel grouping and sorting in data regions of report items such as tablixes, matrices and lists. • Interactive features in RDL specification like drill through, hyperlink, and interactive sorting to work with report at runtime. • Preview the report in print layout prior to printing. Page settings can be modified using page setup dialog. • All static texts within the report viewer and report designer can be localized to any desired language. • Displayed reports can be exported to popular file formats: PDF, Word, Excel, and HTML. Learn more: https://www.boldreports.com/features?utm_source=nuget&utm_medium=listing Documentation: https://help.boldreports.com/embedded-reporting/aspnet-core-reporting?utm_source=nuget&utm_medium=listing Support Questions: mailto:support@boldreports.com?utm_source=nuget&utm_medium=listing This is a commercial product and requires a paid subscription license for possession or use. Syncfusion’s Bold Reports services, including this component, is subject to the terms and conditions of Syncfusion's Bold Reports Software License Agreement and Terms of Service (https://www.boldreports.com/terms-of-use/?utm_source=nuget&utm_medium=listing). To acquire a license, you can start a subscription or start a free 15-day trial here (https://www.boldreports.com/pricing/?utm_source=nuget&utm_medium=listing). This server-side helper package provides services to the following components and libraries: • ASP.NET Core Report Viewer: https://www.boldreports.com/embedded-reporting/aspnet-core-report-viewer?utm_source=nuget&utm_medium=listing • ASP.NET Core Report Designer: https://www.boldreports.com/embedded-reporting/aspnet-core-report-designer?utm_source=nuget&utm_medium=listing • ASP.NET Core Report Writer: https://www.boldreports.com/embedded-reporting/aspnet-core-report-writer?utm_source=nuget&utm_medium=listing • Blazor Report Viewer: https://www.boldreports.com/embedded-reporting/blazor-report-viewer?utm_source=nuget&utm_medium=listing • Blazor Report Designer: https://www.boldreports.com/embedded-reporting/blazor-report-designer?utm_source=nuget&utm_medium=listing • Angular Report Viewer: https://www.boldreports.com/embedded-reporting/angular-report-viewer?utm_source=nuget&utm_medium=listing • Angular Report Designer: https://www.boldreports.com/embedded-reporting/angular-report-designer?utm_source=nuget&utm_medium=listing • JavaScript Report Viewer: https://www.boldreports.com/embedded-reporting/javascript-report-viewer?utm_source=nuget&utm_medium=listing • JavaScript Report Designer: https://www.boldreports.com/embedded-reporting/javascript-report-designer?utm_source=nuget&utm_medium=listing © Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Bold Reports license and copyright applies to this distribution.

Verify.Syncfusion The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Extends Verify (https://github.com/VerifyTests/Verify) to allow verification via Syncfusion.

IdPowerToys.PowerPointGenerator

Library to create a PowerPoint presentation of conditional access policies of a Microsoft Entra tenant.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
25.1.37 118 3/26/2024
25.1.35 1,361 3/15/2024
24.2.9 1,620 3/4/2024
24.2.8 956 2/26/2024
24.2.7 1,790 2/19/2024
24.2.6 670 2/14/2024
24.2.5 546 2/12/2024
24.2.4 1,294 2/6/2024
24.2.3 3,788 1/31/2024
24.1.47 3,026 1/23/2024
24.1.46 790 1/17/2024
24.1.45 2,284 1/9/2024
24.1.44 1,685 1/3/2024
24.1.43 675 12/27/2023
24.1.41 10,144 12/18/2023
23.2.7 3,381 12/6/2023
23.2.6 3,141 11/28/2023
23.2.5 1,350 11/23/2023
23.2.4 2,045 11/20/2023
23.1.44 3,209 11/6/2023
23.1.43 4,870 10/30/2023
23.1.42 1,940 10/23/2023
23.1.41 2,320 10/16/2023
23.1.40 1,949 10/10/2023
23.1.39 1,521 10/4/2023
23.1.38 3,079 9/26/2023
23.1.36 5,788 9/15/2023
22.2.12 1,764 9/5/2023
22.2.11 1,132 8/28/2023
22.2.10 2,295 8/22/2023
22.2.9 1,741 8/14/2023
22.2.8 1,589 8/7/2023
22.2.7 2,039 8/2/2023
22.2.5 10,226 7/27/2023
22.1.39 3,181 7/18/2023
22.1.38 3,730 7/11/2023
22.1.37 2,113 7/3/2023
22.1.36 1,344 6/28/2023
22.1.34 5,636 6/21/2023
21.2.10 1,883 6/13/2023
21.2.9 1,942 6/6/2023
21.2.8 1,876 5/30/2023
21.2.6 4,509 5/22/2023
21.2.5 2,235 5/15/2023
21.2.4 3,622 5/9/2023
21.2.3 3,380 5/3/2023
21.1.41 2,083 4/19/2023
21.1.39 4,037 4/10/2023
21.1.38 1,699 4/3/2023
21.1.37 1,186 3/29/2023
21.1.35 5,708 3/23/2023
20.4.0.54 6,558 3/13/2023
20.4.0.53 5,201 3/7/2023
20.4.0.52 5,652 2/28/2023
20.4.0.51 3,795 2/21/2023
20.4.0.50 1,471 2/14/2023
20.4.0.49 1,931 2/7/2023
20.4.0.48 4,261 2/1/2023
20.4.0.44 3,354 1/18/2023
20.4.0.43 3,281 1/10/2023
20.4.0.42 4,460 1/4/2023
20.4.0.41 1,154 12/29/2022
20.4.0.40 1,092 12/28/2022
20.4.0.38 7,137 12/21/2022
20.3.0.61 6,744 12/13/2022
20.3.0.60 2,275 12/6/2022
20.3.0.59 1,975 11/29/2022
20.3.0.58 1,467 11/22/2022
20.3.0.57 2,284 11/15/2022
20.3.0.56 2,546 11/8/2022
20.3.0.52 3,060 10/27/2022
20.3.0.50 9,727 10/18/2022
20.3.0.49 2,337 10/11/2022
20.3.0.48 12,293 10/5/2022
20.3.0.47 28,117 9/29/2022
20.2.0.50 2,506 9/20/2022
20.2.0.49 1,120 9/13/2022
20.2.0.48 894 9/6/2022
20.2.0.46 1,797 8/30/2022
20.2.0.45 7,852 8/23/2022
20.2.0.44 1,908 8/16/2022
20.2.0.43 2,952 8/8/2022
20.2.0.40 5,924 7/26/2022
20.2.0.39 2,476 7/19/2022
20.2.0.38 2,864 7/12/2022
20.2.0.36 239,849 6/30/2022
20.1.0.61 3,965 6/21/2022
20.1.0.60 2,586 6/14/2022
20.1.0.59 2,117 6/7/2022
20.1.0.58 4,126 5/31/2022
20.1.0.57 1,931 5/24/2022
20.1.0.56 1,118 5/17/2022
20.1.0.55 4,261 5/12/2022
20.1.0.52 2,440 5/3/2022
20.1.0.51 6,613 4/26/2022
20.1.0.50 1,160 4/19/2022
20.1.0.48 1,999 4/12/2022
20.1.0.47 7,512 4/4/2022
19.4.0.56 14,150 3/15/2022
19.4.0.55 3,056 3/8/2022
19.4.0.54 1,932 3/1/2022
19.4.0.53 12,267 2/22/2022
19.4.0.52 3,558 2/15/2022
19.4.0.50 2,724 2/8/2022
19.4.0.48 5,448 1/31/2022
19.4.0.47 2,733 1/25/2022
19.4.0.43 2,543 1/18/2022
19.4.0.42 1,658 1/11/2022
19.4.0.41 27,146 1/4/2022
19.4.0.40 1,725 12/28/2021
19.4.0.38 8,147 12/17/2021
19.3.0.59 1,606 12/14/2021
19.3.0.57 1,812 12/7/2021
19.3.0.56 1,586 11/30/2021
19.3.0.55 1,723 11/23/2021
19.3.0.54 1,745 11/17/2021
19.3.0.53 4,330 11/12/2021
19.3.0.48 2,234 11/3/2021
19.3.0.47 6,993 10/26/2021
19.3.0.46 3,838 10/19/2021
19.3.0.45 9,735 10/12/2021
19.3.0.44 2,235 10/5/2021
19.3.0.43 5,152 9/30/2021
19.2.0.62 3,054 9/14/2021
19.2.0.60 3,904 9/7/2021
19.2.0.59 1,587 8/31/2021
19.2.0.57 2,006 8/24/2021
19.2.0.56 1,520 8/17/2021
19.2.0.55 3,078 8/11/2021
19.2.0.51 3,455 8/2/2021
19.2.0.49 1,500 7/27/2021
19.2.0.48 1,390 7/20/2021
19.2.0.47 1,576 7/13/2021
19.2.0.46 1,426 7/6/2021
19.2.0.44 141,139 6/30/2021
19.1.0.69 3,053 6/15/2021
19.1.0.67 226,818 6/8/2021
19.1.0.66 1,461 6/1/2021
19.1.0.65 1,726 5/25/2021
19.1.0.64 1,341 5/19/2021
19.1.0.63 2,324 5/13/2021
19.1.0.59 1,541 5/4/2021
19.1.0.58 1,489 4/27/2021
19.1.0.57 1,684 4/20/2021
19.1.0.56 1,360 4/13/2021
19.1.0.55 1,376 4/6/2021
19.1.0.54 42,444 3/30/2021
18.4.0.49 2,280 3/23/2021
18.4.0.48 5,814 3/16/2021
18.4.0.47 4,127 3/9/2021
18.4.0.46 2,740 3/2/2021
18.4.0.44 1,440 2/23/2021
18.4.0.43 3,367 2/16/2021
18.4.0.42 1,797 2/9/2021
18.4.0.41 1,653 2/2/2021
18.4.0.39 4,061 1/28/2021
18.4.0.35 7,408 1/19/2021
18.4.0.34 1,592 1/12/2021
18.4.0.33 4,478 1/5/2021
18.4.0.32 2,618 12/30/2020
18.4.0.31 5,634 12/22/2020
18.4.0.30 14,083 12/17/2020
18.3.0.53 2,292 12/8/2020
18.3.0.52 10,205 11/30/2020
18.3.0.51 1,407 11/23/2020
18.3.0.50 9,421 11/17/2020
18.3.0.48 1,550 11/11/2020
18.3.0.47 2,308 11/5/2020
18.3.0.44 1,818 10/27/2020
18.3.0.42 1,819 10/20/2020
18.3.0.40 3,946 10/12/2020
18.3.0.38 1,726 10/7/2020
18.3.0.35 44,532 10/1/2020
18.2.0.59 2,370 9/22/2020
18.2.0.58 2,045 9/15/2020
18.2.0.57 27,884 9/8/2020
18.2.0.56 2,599 9/1/2020
18.2.0.55 1,489 8/25/2020
18.2.0.54 1,785 8/18/2020
18.2.0.48 2,667 8/4/2020
18.2.0.47 2,121 7/28/2020
18.2.0.46 1,786 7/21/2020
18.2.0.45 3,030 7/14/2020
18.2.0.44 6,075 7/7/2020
18.1.0.59 1,837 6/23/2020
18.1.0.57 1,717 6/16/2020
18.1.0.56 2,043 6/9/2020
18.1.0.55 1,566 6/2/2020
18.1.0.54 1,603 5/27/2020
18.1.0.53 2,053 5/19/2020
18.1.0.52 3,392 5/13/2020
18.1.0.48 1,533 5/5/2020
18.1.0.46 1,592 4/28/2020
18.1.0.45 1,581 4/21/2020
18.1.0.44 1,609 4/14/2020
18.1.0.43 2,239 4/7/2020
18.1.0.42 5,888 4/1/2020
18.1.0.36-beta 2,195 3/19/2020
17.4.0.55 1,976 3/10/2020
17.4.0.53 1,581 3/3/2020
17.4.0.51 1,541 2/25/2020
17.4.0.50 1,394 2/18/2020
17.4.0.49 2,504 2/11/2020
17.4.0.47 5,139 2/5/2020
17.4.0.46 2,485 1/30/2020
17.4.0.44 5,713 1/21/2020
17.4.0.43 1,958 1/14/2020
17.4.0.41 1,479 1/7/2020
17.4.0.40 1,647 12/24/2019
17.4.0.39 35,606 12/17/2019
17.3.0.34 1,851 12/10/2019
17.3.0.33 1,587 12/4/2019
17.3.0.30 1,507 12/3/2019
17.3.0.29 1,974 11/26/2019
17.3.0.28 1,642 11/19/2019
17.3.0.27 1,689 11/25/2019
17.3.0.26 2,638 11/5/2019
17.3.0.21 1,612 10/29/2019
17.3.0.19 1,532 10/22/2019
17.3.0.17 1,801 10/15/2019
17.3.0.14 5,344 10/3/2019
17.3.0.9-beta 76,604 9/20/2019
17.2.0.51 3,431 9/10/2019
17.2.0.49 1,569 9/3/2019
17.2.0.47 1,572 8/27/2019
17.2.0.46 2,918 8/22/2019
17.2.0.41 1,617 8/13/2019
17.2.0.40 1,533 8/6/2019
17.2.0.39 1,602 7/30/2019
17.2.0.36 1,474 7/23/2019
17.2.0.35 1,470 7/17/2019
17.2.0.34 3,928 7/11/2019
17.2.0.28-beta 1,354 6/27/2019
17.1.0.53 2,304 6/25/2019
17.1.0.52 1,573 6/18/2019
17.1.0.51 1,581 6/11/2019
17.1.0.50 1,611 6/4/2019
17.1.0.49 1,570 5/28/2019
17.1.0.48 1,498 5/21/2019
17.1.0.47 1,664 5/14/2019
17.1.0.44 5,386 5/7/2019
17.1.0.43 2,045 4/30/2019
17.1.0.42 1,624 4/23/2019
17.1.0.41 1,533 4/16/2019
17.1.0.40 1,627 4/9/2019
17.1.0.38 2,235 3/29/2019
17.1.0.32-beta 1,204 3/13/2019
16.4.0.54 1,968 2/19/2019
16.4.0.53 1,778 2/13/2019
16.4.0.52 1,826 2/5/2019
16.4.0.48 1,009 1/22/2019
16.4.0.47 1,020 1/16/2019
16.4.0.46 1,028 1/8/2019
16.4.0.44 979 12/24/2018
16.4.0.42 1,561 12/17/2018
16.4.0.40-beta 829 12/10/2018
16.3.0.36 1,053 11/27/2018
16.3.0.35-beta 749 11/23/2018
16.3.0.29 2,401 10/30/2018
16.3.0.21 3,077 9/21/2018