Represents the slide navigation screen in slide show view.
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