Reflection
ControlKeySending Event


Control Key being sent.
Syntax
'Declaration
 
<SuppressMessageAttribute(Category="Microsoft.Design", 
   CheckId="CA1009:DeclareEventHandlersCorrectly", 
   Scope="", 
   Target="", 
   MessageId="", 
   Justification="")>
Event ControlKeySending As ControlKeySendingEventHandler
'Usage
 
Dim instance As IScreen
Dim handler As ControlKeySendingEventHandler
 
AddHandler instance.ControlKeySending, handler
[SuppressMessage(Category="Microsoft.Design", 
   CheckId="CA1009:DeclareEventHandlersCorrectly", 
   Scope="", 
   Target="", 
   MessageId="", 
   Justification="")]
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
CancelGets or sets the Cancel property. Set the Cancel property to true the event. (Inherited from Attachmate.Reflection.CancelableEventArgs)
ColumnGets the current column position of the cursor.  
KeyThe Key property permits the user to inspect or modify the control key value.  
RowGets the current row position of the cursor.  
See Also