InfoConnect API Guide
Attachmate.Reflection.Emulation.IbmHosts Namespace / IIbmScreen Interface / AfterSendKeys Event


In This Topic
    AfterSendKeys Event (IIbmScreen)
    In This Topic
    Occurs after data keys are rendered on the terminal screen.
    Syntax
    'Declaration
     
    
    <SuppressMessageAttribute("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly")>
    Event AfterSendKeys As AfterSendKeysEventHandler
    'Usage
     
    
    Dim instance As IIbmScreen
    Dim handler As AfterSendKeysEventHandler
     
    AddHandler instance.AfterSendKeys, handler
    [SuppressMessage("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly")]
    event AfterSendKeysEventHandler AfterSendKeys
    Event Data

    The event handler receives an argument of type AfterSendKeysEventArgs containing data related to this event. The following AfterSendKeysEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the cursor column position where the keys were sent.  
    Gets the keys that have been sent.  
    Gets the cursor row position where the keys were sent.  
    See Also