Application.WindowState Property

PowerPoint Developer Reference

Returns or sets the state of the specified window. Read/write.

Syntax

expression.WindowState

expression   A variable that represents an Application object.

Return Value
PpWindowState

Remarks

The value of the WindowState property can be one of these PpWindowState constants.

ppWindowMaximized
ppWindowMinimized
ppWindowNormal

When the state of the window is ppWindowNormal, the window is neither maximized nor minimized.

Example

This example maximizes the active window.

Visual Basic for Applications
  Application.ActiveWindow.WindowState = ppWindowMaximized

See Also