Opens a presentation form a PowerPoint Template.

public void Open(PowerPointWriter.PowerPointTemplate powerPointTemplate)
Public Sub Create(ByVal powerPointTemplate As PowerPointWriter.PowerPointTemplate)

An instance of a PowerPointTemplate.

A Presentation instance.


          PowerPointTemplate pptt = new PowerPointTemplate();

          //--- Do something with template here

          PowerPointApplication ppta = new PowerPointApplication();
          ppta.Open(pptt);
        

          Dim pptt As New PowerPointTemplate()

          '--- Do something with template here

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