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


In This Topic
    AfterSendKeysEventHandler Delegate
    In This Topic
    Handles the AfterSendKeys event to permit users to obtain the string sent to the host and the row and column on the screen where the keys were sent.
    Syntax
    'Declaration
     
    
    Public Delegate Sub AfterSendKeysEventHandler( _
       ByVal sender As Object, _
       ByVal args As AfterSendKeysEventArgs _
    ) 
    'Usage
     
    
    Dim instance As New AfterSendKeysEventHandler(AddressOf HandlerMethod)
    public delegate void AfterSendKeysEventHandler( 
       object sender,
       AfterSendKeysEventArgs args
    )

    Parameters

    sender
    The event sender.
    args
    AfterSendKeys event argument.
    See Also