InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / AfterSendKeysEventHandler Delegate
The event sender.
AfterSendKeys event argument.


In This Topic
AfterSendKeysEventHandler Delegate
In This Topic
Handles the BeforeSendKey event to permit users to modify a key value or cancel a send key action before it is sent.
Syntax
'Declaration
 
Public Delegate Sub AfterSendKeysEventHandler( _
   ByVal sender As Object, _
   ByVal e As AfterSendKeysEventArgs _
) 
 
'Usage
 
Dim instance As New AfterSendKeysEventHandler(AddressOf HandlerMethod)

Parameters

sender
The event sender.
e
AfterSendKeys event argument.
Remarks
To cancel the action, set the Cancel property of the BeforeSendKeyEventArgs object passed to the event handler to true.
See Also