Gets a value indicating whether the CTRL key was pressed.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property Control As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As KeyEventArgs
Dim value As Boolean
instance.Control = value
value = instance.Control |
| C# | |
|---|
public bool Control {get; set;} |
| C++/CLI | |
|---|
public:
property bool Control {
bool get();
void set ( bool value);
} |
Property Value
true if the CTRL key was pressed; otherwise,
false.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also