How to create a PowerPoint file in C#?
The following steps demonstrate how to create a simple PowerPoint presentation in a C# application using Essential Presentation.
Step 1: Create a new console application. Name it as GettingStarted.
Step 2: Install Presentation assemblies with NuGet
In Visual Studio, select Tools > NuGet Package Manager > Package Manager Console and execute the below command.
install-package Syncfusion.Presentation.Base45 -source https://nuget.syncfusion.com/windows-forms |
Note:
Here the sample is created in .NET 4.5 framework. So we are installing the “Syncfusion.Presentation.Base45” NuGet package. The Presentation library is providing support from .NET 2.0 framework.
Step 3: Include the below code snippet in the main () method of “Program.cs” file
//Create a PowerPoint presentation instance IPresentation presentation = Presentation.Create(); //Add a blank slide to the PowerPoint instance ISlide slide = presentation.Slides.Add(SlideLayoutType.Blank); //Add a paragraph to the slide slide.Shapes.AddTextBox(400, 250, 200, 100).TextBody.AddParagraph("Hello World"); //Save the presentation presentation.Save("Sample.PPTX"); |
Step 4: Compile & execute the application. Now this application creates a simple PowerPoint document.
Note:
A new version of Essential Studio for ASP.NET is available. Versions prior to the release of Essential Studio 2014, Volume 2 will now be referred to as a classic versions.The new ASP.NET suite is powered by Essential Studio for JavaScript providing client-side rendering of HTML 5-JavaScript controls, offering better performance, and better support for touch interactivity. The new version includes all the features of the old version, so migration is easy.
The Classic controls can be used in existing projects; however, if you are starting a new project, we recommend using the latest version of Essential Studio for ASP.NET. Although Syncfusion will continue to support all Classic Versions, we are happy to assist you in migrating to the newest edition.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls. If you have any queries or require clarifications, please let us know in the comments section below.
You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!