Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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.

Signature
C#C#
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}
{signature:vb.net
vb.net
}
Public Sub Create(ByVal format As PowerPointApplication.FileFormat)
Parameters

...

The file format to use for the presentation.

Returns

A Presentation object representing the created presentation.

{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}
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle