Share via


DocumentWindow.Panes Property

PowerPoint Developer Reference

Returns a Panes collection that represents the panes in the document window. Read-only.

Syntax

expression.Panes

expression   A variable that represents a DocumentWindow object.

Return Value
Panes

Example

This example tests for the number of panes in the active window. If the value is one, indicating any view other that normal view, normal view is activated.

Visual Basic for Applications
  If ActiveWindow.Panes.Count = 1 Then
    ActiveWindow.ViewType = ppViewNormal
End If

See Also