Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 850 Bytes

Project.Application.AppRestore.md

File metadata and controls

46 lines (30 loc) · 850 Bytes
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Application.AppRestore method (Project)
vbapj.chm2011
vbapj.chm2011
project-server
Project.Application.AppRestore
f50a1158-83d1-e38e-65e6-cdc456f14bc7
06/08/2017
medium

Application.AppRestore method (Project)

Restores the main window to its previous nonminimized or nonmaximized state.

Syntax

expression. AppRestore

expression A variable that represents an Application object.

Return value

Boolean

Example

The following example minimizes the application and then restores its original state.

Sub RestoreApplication() 
 'Minimize the app. 
 AppMinimize 
 'Restore the app. 
 AppRestore 
End Sub

[!includeSupport and feedback]