SlideShowSettings Property

Microsoft PowerPoint Visual Basic

SlideShowSettings Property

       

Returns a SlideShowSettings object that represents the slide show settings for the specified presentation. Read-only.

Example

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