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

...

Excerpt

Opens a presentation form a PowerPoint Template.

Signature
C#
C#
public void Open(PowerPointWriter.PowerPointTemplate powerPointTemplate)

...

Param
powerPointTemplate
powerPointTemplate

An instance of a PowerPointTemplate.

A {Presentation|PowerPointWriter.Presentation} instance.

A Presentation instance.

Returns
Wiki Markup
Example
Code Block
csharp
csharp
titleC#


          PowerPointTemplate pptt = new PowerPointTemplate();

          //--- Do something with template here

          PowerPointApplication ppta = new PowerPointApplication();
          ppta.Open(pptt);
        
Code Block
vbnet
vbnet
titlevb.net


          Dim pptt As New PowerPointTemplate()

          '--- Do something with template here

          Dim ppta As New PowerPointApplication()
          ppta.Open(pptt)