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
See also
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.