Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

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, false, "generated.pptx", false);
        
Code Block
vbnet
vbnet
titlevb.net

          Dim pptApp As New PowerPointApplication()
          Dim pres As Presentation = pptApp.Create(PowerPointApplcation.FileFormat.Pptx)

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