title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
SlideShowWindow.View property (PowerPoint) |
vbapp10.chm507003 |
|
|
ebf565af-fc90-ab1b-0e05-6dcb90a7c2d2 |
06/08/2017 |
medium |
Returns a SlideShowView object. Read-only.
expression.View
expression A variable that represents a SlideShowWindow object.
SlideShowView
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
[!includeSupport and feedback]