Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.65 KB

Word.Application.WindowDeactivate.md

File metadata and controls

50 lines (34 loc) · 1.65 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.WindowDeactivate event (Word)
vbawd10.chm4000010
vbawd10.chm4000010
Word.Application.WindowDeactivate
70b86ecc-40ba-6e70-b430-4fce6083ff2d
08/20/2018
medium

Application.WindowDeactivate event (Word)

Occurs when any document window is deactivated.

Note

If you are working with a document embedded within another document, this event will not occur.

Syntax

expression.WindowDeactivate (Doc, Wn)

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
Doc Required Document The document displayed in the deactivated window.
Wn Required Window The deactivated window.

Example

This example minimizes any document window when it is deactivated. This code must be placed in a class module, and an instance of the class must be correctly initialized to see this example work. For directions about how to accomplish this, see Using events with the Application object.

Public WithEvents appWord as Word.Application 
 
Private Sub appWord_WindowDeactivate _ 
 (ByVal Wn As Word.Window) 
 Wn.WindowState = wdWindowStateMinimize 
End Sub

For information about using events with the Document object, see Using events with the Document object.

[!includeSupport and feedback]