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
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#
public void Create(PowerPointApplication.FileFormat format)
Signature
vb.net
vb.net
Public Sub Create(ByVal format As PowerPointApplication.FileFormat)
Parameters
Param
format
format

The file format to use for the presentation.

Returns

A Presentation object representing the created presentation.

Example
Code Block
csharp
csharp
titleC#
Presentation pres = pptApp.Create(PwoerPointApplication.FileFormat.Pptx);
Code Block
vbnet
vbnet
titlevb.net
Dim pres As Presentation = pptApp.Create(PowerPointApplication.FileFormat.Pptx)