Reflection
BeforeSendControlKeyEventHandler Delegate


event sender.
BeforeSendControlKey event argument.
Handles the BeforeSendControlKey event to permit users to modify a control key value or cancel a send control key action before it is sent.

To cancel the action, set the Cancel property of the BeforeSendControlKeyEventArgs object passed to the event handler to true.

Syntax
'Declaration
 
Public Delegate Sub BeforeSendControlKeyEventHandler( _
   ByVal sender As Object, _
   ByVal args As BeforeSendControlKeyEventArgs _
) 
'Usage
 
Dim instance As New BeforeSendControlKeyEventHandler(AddressOf HandlerMethod)
public delegate void BeforeSendControlKeyEventHandler( 
   object sender,
   BeforeSendControlKeyEventArgs args
)

Parameters

sender
event sender.
args
BeforeSendControlKey event argument.
See Also