Application.WindowDeactivate event (Publisher)
Occurs when the application window is deactivated.
Syntax
expression.WindowDeactivate (Wn)
expression A variable that represents an Application object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Wn | Required | Window | The window that is being deactivated. |
Example
This example minimizes the Microsoft Publisher 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 appPublisher as Publisher.Application
Private Sub appPublisher_WindowDeactivate _
(ByVal Wn As Window)
Wn.WindowState = pbWindowStateMinimize
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.