Reflection
ApplicationClosingEventHandler Delegate


The event sender.
ApplicationClosing event argument.
Delegate for ApplicationClosingEvent.
Syntax
'Declaration
 
Public Delegate Sub ApplicationClosingEventHandler( _
   ByVal sender As Object, _
   ByVal e As ApplicationClosingEventArgs _
) 
'Usage
 
Dim instance As New ApplicationClosingEventHandler(AddressOf HandlerMethod)
public delegate void ApplicationClosingEventHandler( 
   object sender,
   ApplicationClosingEventArgs e
)

Parameters

sender
The event sender.
e
ApplicationClosing event argument.
See Also