Share via


SlideShowWindow.View Property

PowerPoint Developer Reference

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.

Visual Basic for Applications
  Application.SlideShowWindows(1).View.Exit
With Application.ActiveWindow
    .ViewType = ppViewSlide
    .View.GotoSlide 3
End With

See Also