AppEvents_WindowActivateEventHandler Delegate
A Delegate type used to add an event handler for the WindowActivate event. The WindowActivate event occurs when any workbook window is activated.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub AppEvents_WindowActivateEventHandler ( _
Wb As Workbook, _
Wn As Window _
)
'Usage
Dim instance As New AppEvents_WindowActivateEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void AppEvents_WindowActivateEventHandler(
Workbook Wb,
Window Wn
)
Parameters
Wb
Type: Microsoft.Office.Interop.Excel.WorkbookThe workbook displayed in the activated window.
Wn
Type: Microsoft.Office.Interop.Excel.WindowThe activated window.