Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.05 KB

Project.Application.WindowState.md

File metadata and controls

42 lines (25 loc) · 1.05 KB
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Application.WindowState property (Project)
project-server
Project.Application.WindowState
1a5d372d-9e05-80b4-6722-19781381d372
06/08/2017
medium

Application.WindowState property (Project)

Gets or sets the state of the Project application window, where the state is maximized, minimized, or normal. Read/write PjWindowState.

Syntax

expression.WindowState

expression A variable that represents an Application object.

Remarks

The WindowState property can be one of the PjWindowState constants.

To change the state of a window within the application window, use the WindowState property of the Window object.

Example

The following example minimizes the Project application window.

Sub MinimizeApplicationWindow() 
    Application.WindowState = pjMinimized 
End Sub

[!includeSupport and feedback]