title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.WindowDeactivate event (Excel) |
vbaxl10.chm504092 |
|
|
6adcba54-3d4a-f780-915e-5798303faf60 |
04/05/2019 |
medium |
Occurs when any workbook window is deactivated.
expression.WindowDeactivate (Wb, Wn)
expression A variable that represents an Application object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Wb | Required | Workbook | The workbook displayed in the deactivated window. |
Wn | Required | Window | The deactivated window. |
For information about how to use event procedures with the Application object, see Using events with the Application object.
This example minimizes any workbook window when it's deactivated.
Private Sub Workbook_WindowDeactivate(ByVal Wn As Excel.Window)
Wn.WindowState = xlMinimized
End Sub
[!includeSupport and feedback]