A Presentation object represents a PowerPoint presentation. To return a Presentation object: Call PowerPointApplication.Open() to open an existing PowerPoint presentation.

[DefaultMember("Item")]
 public sealed class Presentation : System.Collections.Generic.IEnumerable<Slide>
<DefaultMember("Item")> _
	Public NotInheritable Class Workbook
		Implements System.Collections.Generic.IEnumerable(Of Slide)
          //--- Open an existing Workbook
          PowerPointApplication ppta = new PowerPointApplication();
          Presentation pres = ppta.Open(@"C:\Reports\Report.pptx");
        
          '--- Open an existing Workbook
          Dim ppta As New PowerPointApplication()
          Dim pres As Presentation = ppta.Open("C:\Reports\Report.pptx")
        

Name

Description

DocumentProperties

Slides

Name

Description

GetEnumerator()