Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 471 Bytes

3bb82afe-62a5-7e5a-597d-80f56f5cde4d.md

File metadata and controls

23 lines (12 loc) · 471 Bytes

SlideNavigation Object (PowerPoint)

Represents the slide navigation screen in slide show view.

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