EApplication_WindowDeactivateEventHandler Delegate
A delegate for an event in the corresponding object. After you implement a callback method for the event, use this delegate to connect the callback method to the event.
Occurs when the application window or any document window is deactivated.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub EApplication_WindowDeactivateEventHandler ( _
Pres As Presentation, _
Wn As DocumentWindow _
)
'Usage
Dim instance As New EApplication_WindowDeactivateEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void EApplication_WindowDeactivateEventHandler(
Presentation Pres,
DocumentWindow Wn
)
Parameters
- Pres
Type: Microsoft.Office.Interop.PowerPoint.Presentation
The presentation displayed in the deactivated window.
- Wn
Type: Microsoft.Office.Interop.PowerPoint.DocumentWindow
The deactivated document window.