Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Opens a presentation form a PowerPoint Template.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Opens a presentation form a PowerPoint Template.{excerpt}
{signature:C#}
public void Open(PowerPointWriter.PowerPointTemplate powerPointTemplate)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub Create(ByVal powerPointTemplate As PowerPointWriter.PowerPointTemplate)
Parameters

...

An instance of a PowerPointTemplate.

Returns

A Presentation instance.

{signature}
{parameters}
{param:powerPointTemplate}An instance of a PowerPointTemplate.{param}
{returns}A [Presentation|Presentation] instance.{returns}
{example}{code:csharp|title=C#}

          PowerPointTemplate pptt = new PowerPointTemplate();

          //--- Do something with template here

          PowerPointApplication ppta = new PowerPointApplication();
          ppta.Open(pptt);
        
{code}
{code:vbnet|title=vb.net
}

          Dim pptt As New PowerPointTemplate()

          '--- Do something with template here

          Dim ppta As New PowerPointApplication()
          ppta.Open(pptt)
        {code}

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle