Message-ID: <881779760.8009.1711628605858.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_8008_59850308.1711628605858" ------=_Part_8008_59850308.1711628605858 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html PowerPointApplication.Save(PowerPointWriter.Presentation, String= )

PowerPointApplication.Save(PowerPointWriter.Presentation, String)

Description

=20

Saves a specified Presentation<= /a> as a  OOXML format.pptx.

=20
C#
=20
 public virtual void Save(Presentation presentation, System.String fileName=
)
=20
=20
vb.net
=20
Public Overridable Sub Save(ByVal presentation As Presentation, ByVal fileN=
ame As String)
=20
=20

Parameters

=20
presentation
A=20 Presentation object representing the presentation to save.=20
fileName
Specifies a complete path and file name for the Pre= sentation. PowerPointWriter will save the file to this location. If a file = with the same name exists, it will be overwritten by the new PowerPoint fil= e.=20

Examples

=20
C#
=20
PowerPointApplication pptApp =3D new PowerPointApplication();
Presentation pres =3D pptApp.Create(PwoerPointApplication.FileFormat.Pptx);
pptApp.Save(pres,@"C:\Sales2003\June.pptx");
=20
=20
vb.net
=20
Dim pptApp As New PowerPointApplication()
Dim pres As Presentation =3D pptApp.Create(PowerPointApplication.FileFormat=
.Pptx)
pptApp.Save(pres, "C:\Sales2003\June.pptx")
=20
------=_Part_8008_59850308.1711628605858--