Workbook.WindowActivate Event (Excel)
Occurs when any workbook window is activated.
Syntax
식 .WindowActivate(Wn)
식 A variable that represents a Workbook object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Wn |
필수 |
Window |
The activated window. |
Example
This example maximizes any workbook window when it's activated.
Private Sub Workbook_WindowActivate(ByVal Wn As Excel.Window)
Wn.WindowState = xlMaximized
End Sub