Skip to content

Latest commit

 

History

History
54 lines (30 loc) · 1013 Bytes

PowerPoint.SlideShowWindow.View.md

File metadata and controls

54 lines (30 loc) · 1013 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
SlideShowWindow.View property (PowerPoint)
vbapp10.chm507003
vbapp10.chm507003
PowerPoint.SlideShowWindow.View
ebf565af-fc90-ab1b-0e05-6dcb90a7c2d2
06/08/2017
medium

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

SlideShowWindow Object

[!includeSupport and feedback]