Reflection
Cancel Property (BeforeSendControlKeyEventArgs)
Example 


The Cancel property indicates whether the user wants to cancel the SendControlKey.
Syntax
'Declaration
 
Public Property Cancel As Boolean
'Usage
 
Dim instance As BeforeSendControlKeyEventArgs
Dim value As Boolean
 
instance.Cancel = value
 
value = instance.Cancel
public bool Cancel {get; set;}
Example
BeforeSendControlKeyEventArgs args;
args.Cancel = true;
See Also