IronPPT is a comprehensive C# library designed for crafting and modifying PowerPoint presentations. Its powerful API supports the creation of slides and facilitates the embedding of text, images, shapes, and diverse multimedia components. This makes it an exceptional tool for developers who intend to streamline PowerPoint-related operations within .NET frameworks.
- Programmatic generation and alteration of PowerPoint slides.
- Embedding and styling text, imagery, shapes, and multimedia.
- Streamlining routine PowerPoint tasks within .NET frameworks.
- Compatibility with .NET Framework 4.6.2 onwards and .NET 6.0 and beyond.
- Intuitive API integration enhancing project fluidity.
Explore more on our home page, including a plethora of coding examples and a comprehensive feature list.
- .NET versions 9 through 5, Core 2x & 3x, Standard 2 & 2.1, and Framework 4.6.2 onwards.
- Environments such as Windows, macOS, Linux, plus containers like Docker, and Cloud platforms including Azure and AWS.
All details regarding our API documentation and licensing terms are available on our site.
Begin by installing the IronPPT NuGet package using this command in your package management console:
PM> Install-Package IronPPT
using IronPPT;
var presentation = new PresentationDocument();
// Create a new Slide
Slide slide = new Slide();
// Insert text into the slide
slide.AddText("Sample Text Entry");
// Incorporate the slide into the presentation
presentation.AddSlide(slide);
presentation.Save("NewSlidePresentation.pptx");
Visit our official website for extensive tutorials, example code, licensing details, and documentation.
Contact our support team via email: [email protected]
- How-To Guides : https://ironsoftware.com/csharp/ppt/how-to/
- Code Samples : https://ironsoftware.com/csharp/ppt/examples/
- API Guide : https://ironsoftware.com/csharp/ppt/object-reference/api/
- Tutorial Listings : https://ironsoftware.com/csharp/ppt/tutorials/
- Licensing Details : https://ironsoftware.com/csharp/ppt/licensing/
- Live Support Chat : https://ironsoftware.com/csharp/ppt/#helpscout-support


