Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Example
Code Block
csharp
csharp
titleC#
PowerPointApplication pptApp = new PowerPointApplication();
Presentation pres = pptApp.Create(PowerPointApplication.FileFormat.Pptx);

//--- Do something here
pptApp.Save(pres, Page.Response, "generated.pptx", false, "application/unknown");
Code Block
vbnet
vbnet
titlevb.net
Dim pptApp As New PowerPointApplication()
Dim pres As Presentation = pptApp.Create(PowerPointApplication.FileFormat.Pptx)

'--- Do something here
pptApp.Save(pres, Page.Response, "generated.pptx", False, "application/unknown")