Message-ID: <1838309221.8037.1711629596984.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_8036_446421056.1711629596984" ------=_Part_8036_446421056.1711629596984 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Presentation

Presentation

Description

=20

A Presentation object repre= sents a PowerPoint presentation. To return a Presentation obje= ct: Call PowerPointA= pplication.Open() to open an existing PowerPoint presentation.

=20
C#
=20
[DefaultMember("Item")]
 public sealed class Presentation : System.Collections.Generic.IEnumerable&=
lt;Slide>
=20
=20
vb.net
=20
<DefaultMember("Item")> _
=09Public NotInheritable Class Workbook
=09=09Implements System.Collections.Generic.IEnumerable(Of Slide)
=20
=20

Examples

=20
C#
=20
          //--- Open an existing Workbook
          PowerPointApplication ppta =3D new PowerPointApplication();
          Presentation pres =3D ppta.Open(@"C:\Reports\Report.pptx&quo=
t;);
        
=20
=20
vb.net
=20
          '--- Open an existing Workbook
          Dim ppta As New PowerPointApplication()
          Dim pres As Presentation =3D ppta.Open("C:\Reports\Report.pp=
tx")
        
=20
=20

Properties

=20
=20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20

Name

Description

DocumentProperties

Returns a DocumentProperties object that represents properties of the sp= ecified presentation, such as name, author, and summary. In Microsoft Power= Point, these properties are displayed in the file's Properties sheet. To vi= ew the Properties sheet in PowerPoint, open PowerPoint's File menu, and sel= ect Properties.

Slides

Returns a Sli= des collection which provides access to all slides in the specified pre= sentation.
=20

Methods

=20
=20 =20 =20 =20 =20 =20 =20 =20 =20

Name

Description

GetEnumerator()

Returns an IEnumerator for the Slides in a P= resentation

------=_Part_8036_446421056.1711629596984--