WorkbookEvents_WindowDeactivateEventHandler Delegate 

A Delegate type used to add an event handler for the WindowDeactivate event. The WindowDeactivate event occurs when any workbook window is deactivated.

Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)

Usage

Sub Sub1(Wn As Window)
End Sub
Dim workbookEvents_WindowDeactivateEventHandler1 As New WorkbookEvents_WindowDeactivateEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub WorkbookEvents_WindowDeactivateEventHandler( _
    <InAttribute()> ByVal Wn As Window _
)
public delegate void WorkbookEvents_WindowDeactivateEventHandler(
    [In] Window Wn
);
public delegate Void WorkbookEvents_WindowDeactivateEventHandler(
    Window^ Wn
);
public delegate void WorkbookEvents_WindowDeactivateEventHandler(
    /*in*/Window Wn
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • Wn
    The deactivated window.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Interop.Excel Namespace