How to create a WinForms PowerPoint document 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.
I hope you enjoyed learning about how to create a WinForms PowerPoint document in C#.
You can refer to our ASP.NET PDF's feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our ASP.NET PDF example to understand how to create and manipulate data.
For current customers, you can check out our Document Processing Libraries from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our 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!