View Property

Applies To

DocumentWindow object, SlideShowWindow object.

Description

DocumentWindow object: Returns a View object that represents the view in the specified document window. Read-only.

SlideShowWindow object: Returns a SlideShowView object. Read-only.

Example

This example sets the view in the active window to slide view and then displays slide three.

With Application.ActiveWindow
    .ViewType = ppViewSlide
    .View.GotoSlide 3
End With