Share via


SlideShowSettings.RangeType Property

PowerPoint Developer Reference

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."

Visual Basic for Applications
  With ActivePresentation.SlideShowSettings
    .RangeType = ppShowNamedSlideShow
    .SlideShowName = "Quick Show"
    .Run
End With

See Also