Skip to content

Latest commit

 

History

History
55 lines (30 loc) · 1.02 KB

PowerPoint.DocumentWindow.ActivePane.md

File metadata and controls

55 lines (30 loc) · 1.02 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
DocumentWindow.ActivePane property (PowerPoint)
vbapp10.chm511022
vbapp10.chm511022
PowerPoint.DocumentWindow.ActivePane
8fa4c8a1-37b6-2676-1cfd-5fa2b130d2e3
06/08/2017
medium

DocumentWindow.ActivePane property (PowerPoint)

Returns a Pane object that represents the active pane in the document window. Read-only.

Syntax

expression.ActivePane

expression A variable that represents an DocumentWindow object.

Return value

Pane

Example

If the active pane is the slide pane, this example makes the notes pane the active pane. The notes pane is the third member of the Panes collection.

With ActiveWindow

    If .ActivePane.ViewType = ppViewSlide Then

        .Panes(3).Activate

    End If

End With

See also

DocumentWindow Object

[!includeSupport and feedback]