StartingSlide Property
Applies To
SlideShowSettings object.
Description
Returns or sets the first slide to be displayed in the specified slide show. Read/write Long.
See Also
EndingSlide property, FirstSlideNumber property.
Example
This example runs a slide show of the active presentation, starting with slide two and ending with slide four.
With ActivePresentation.SlideShowSettings
.StartingSlide = 2
.EndingSlide = 4
.Run
End With