SlideShowWindow.SlideNavigation property (PowerPoint)

Returns a SlideNavigation object that represents the slide navigation screen in slide show view. Read-only

Syntax

expression. SlideNavigation

expression A variable that represents a SlideShowWindow object.

Example

The following code sample starts a slide show from the active presentation and then makes the navigation screen visible.

Sub ShowSlideNavigation()

    ' Start the slide show.
    ActivePresentation.SlideShowSettings.Run
    
    ' Show the slide navigation screen.
    ActivePresentation.SlideShowWindow.SlideNavigation.Visible = True

End Sub

Property value

SLIDENAVIGATION

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.