Returns the slide at the specified position. This property is an indexer for the Slides class.

 public Slide this[int position] { get; }
Public Default ReadOnly Property Item(ByVal position As Integer) As Slide

The 0-based position the worksheet to get.

The slide at the specified position.

Slide Slide1 = Presentation.Slides[0];
Dim Slide1 As Slide = Presentation.Slides(0)