InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / BeforeSendControlKeyEventArgs Class / Key Property
Example


In This Topic
Key Property (BeforeSendControlKeyEventArgs)
In This Topic
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
Example
BeforeSendControlKeyEventArgs args;
args.Key = ControlKeyCode.Delete;
See Also