title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Presentation.SlideShowSettings property (PowerPoint) |
vbapp10.chm583015 |
|
|
90a5a5cb-1f78-bbb2-8e4c-eb35aae13c90 |
06/08/2017 |
medium |
Returns a SlideShowSettings object that represents the slide show settings for the specified presentation. Read-only.
expression. SlideShowSettings
expression A variable that represents a Presentation object.
SlideShowSettings
This example starts a slide show meant to be presented by a speaker. The slide show will run with animation and narration turned off.
With Application.ActivePresentation.SlideShowSettings
.ShowType = ppShowTypeSpeaker
.ShowWithNarration = False
.ShowWithAnimation = False
.Run
End With
[!includeSupport and feedback]