Application.WindowActivate event (Publisher)
Occurs when the application window is activated.
Syntax
expression.WindowActivate (Wn)
expression A variable that represents an Application object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Wn | Required | Window | The window that is being activated. |
Example
This example maximizes the Microsoft Publisher window when it is activated. 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_WindowActivate _
(ByVal Wn As Window)
Wn.WindowState = pbWindowStateMaximize
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.