InfoConnect for Airlines
Key Property (BeforeSendControlKeyEventArgs)
Example 


The Key property permits the user to inspect or modify the Control key value.
Syntax
'Declaration
 
Public Property Key As ControlKeyCode
'Usage
 
Dim instance As BeforeSendControlKeyEventArgs
Dim value As ControlKeyCode
 
instance.Key = value
 
value = instance.Key
public ControlKeyCode Key {get; set;}
Example
BeforeSendControlKeyEventArgs args;
args.Key = ControlKeyCode.Delete;
See Also