InfoConnect API Guide
Attachmate.Reflection.Emulation.OpenSystems Namespace / KeysSendingEventHandler Delegate


In This Topic
    KeysSendingEventHandler Delegate
    In This Topic
    This event is triggered before InfoConnect transmits a character or a string of characters to the host.
    Syntax
    'Declaration
     
    
    Public Delegate Sub KeysSendingEventHandler( _
       ByVal sender As Object, _
       ByVal e As KeysSendingEventArgs _
    ) 
    'Usage
     
    
    Dim instance As New KeysSendingEventHandler(AddressOf HandlerMethod)
    public delegate void KeysSendingEventHandler( 
       object sender,
       KeysSendingEventArgs e
    )

    Parameters

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