Reflection .NET API
Attachmate.Reflection.Emulation.IbmHosts Assembly / Attachmate.Reflection.Emulation.IbmHosts Namespace / BeforeSendControlKeyEventHandler Delegate
event sender.
BeforeSendControlKey event argument.


In This Topic
BeforeSendControlKeyEventHandler Delegate
In This Topic
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)

Parameters

sender
event sender.
args
BeforeSendControlKey event argument.
See Also