InfoConnect API Guide
Attachmate.Reflection.Emulation.OpenSystems Namespace / IScreen Interface / ControlKeySending Event


In This Topic
    ControlKeySending Event
    In This Topic
    Control Key being sent.
    Syntax
    'Declaration
     
    
    <SuppressMessageAttribute("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly")>
    Event ControlKeySending As ControlKeySendingEventHandler
    'Usage
     
    
    Dim instance As IScreen
    Dim handler As ControlKeySendingEventHandler
     
    AddHandler instance.ControlKeySending, handler
    [SuppressMessage("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly")]
    event ControlKeySendingEventHandler ControlKeySending
    Event Data

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

    PropertyDescription
    Gets or sets the Cancel property. Set the Cancel property to true the event. (Inherited from Attachmate.Reflection.CancelableEventArgs)
    Gets the current column position of the cursor.  
    The Key property permits the user to inspect or modify the control key value.  
    Gets the current row position of the cursor.  
    See Also