Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Occurs when any workbook window is activated.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Syntax
'Declaration
Public Event WindowActivate As WorkbookEvents_WindowActivateEventHandler
public event WorkbookEvents_WindowActivateEventHandler WindowActivate
Examples
The following code example demonstrates a handler for the WindowActivate event. The event handler maximizes the workbook window that was activated.
This example is for a document-level customization.
Private Sub ThisWorkbook_WindowActivate(ByVal Wn As Excel.Window) _
Handles Me.WindowActivate
Wn.WindowState = Excel.XlWindowState.xlMaximized
End Sub
private void WorkbookWindowActivate()
{
this.WindowActivate +=
new Excel.WorkbookEvents_WindowActivateEventHandler(
ThisWorkbook_WindowActivate);
}
private void ThisWorkbook_WindowActivate(Excel.Window Wn)
{
Wn.WindowState = Excel.XlWindowState.xlMaximized;
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.