SlideShowSettings.RangeType Property (PowerPoint)
Returns or sets the type of slide show to run. Read/write.
Syntax
expression .RangeType
expression A variable that represents a SlideShowSettings object.
Remarks
The value of the RangeType property can be one of these PpSlideShowRangeType constants.
ppShowAll |
ppShowNamedSlideShow |
ppShowSlideRange |
Example
This example runs the named slide show "Quick Show."
With ActivePresentation.SlideShowSettings
.RangeType = ppShowNamedSlideShow
.SlideShowName = "Quick Show"
.Run
End With