Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save documentprocessing/ffef86d77c294e09fd0b47b910b17252 to your computer and use it in GitHub Desktop.
Save documentprocessing/ffef86d77c294e09fd0b47b910b17252 to your computer and use it in GitHub Desktop.
Create PowerPoint Presentation in .NET
// Create an object of the Presentation class.
Presentation presentation = Presentation.Create("blankPresentation.pptx");
//Perform necessary operations.
//...
// Call the Save method to save the PowerPoint file onto the disk.
presentation.Save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment