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
Wiki Markup
{description}
{excerpt}
Creates a new presentation containing 1 slide, in the specified file format.  The slide is blank when the presentation is created, and standard font, style, and format settings are applied.
{excerpt}
{signature:C#}
public void Create(PowerPointApplication.FileFormat format)
{signature}
{signature:vb.net}
Public Sub Create(ByVal format As PowerPointApplication.FileFormat)
{signature}

{parameters}
{param:format}The file format to use for the presentation.{param}
{returns}
A [Presentation|Presentation] object representing the created presentation.
{returns}
{example}
{code:csharp|title=C#}
Presentation pres = pptApp.Create(PwoerPointApplication.FileFormat.Pptx);
{code}
{code:vbnet|title=vb.net}
Dim pres As Presentation = pptApp.Create(PowerPointApplication.FileFormat.Pptx)
{code}

{example}