'Declaration
Event ControlKeySending As ControlKeySendingEventHandler
'Usage
Dim instance As IScreen Dim handler As ControlKeySendingEventHandler AddHandler instance.ControlKeySending, handler
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.
Property | Description |
---|---|
Cancel | Gets or sets the Cancel property. Set the Cancel property to true the event. (Inherited from Attachmate.Reflection.CancelableEventArgs) |
Column | Gets the current column position of the cursor. |
Key | The Key property permits the user to inspect or modify the control key value. |
Row | Gets the current row position of the cursor. |
See Also