SlideShowWindow.View Property (PowerPoint)
Returns a SlideShowView object. Read-only.
Syntax
expression .View
expression A variable that represents a SlideShowWindow object.
Return Value
SlideShowView
Example
This example uses the View property to exit the current slide show, sets the view in the active window to slide view, and then displays slide three.
Application.SlideShowWindows(1).View.Exit
With Application.ActiveWindow
.ViewType = ppViewSlide
.View.GotoSlide 3
End With