Determines whether the specified key is a regular input key or a special key that requires preprocessing.
Namespace: Dapfor.Net.UiAssembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)
Syntax
C# |
---|
protected override bool IsInputKey(
Keys keyData
) |
Visual Basic |
---|
Protected Overrides Function IsInputKey (
keyData As Keys
) As Boolean |
Visual C++ |
---|
protected:
virtual bool IsInputKey(
Keys keyData
) override |
F# |
---|
abstract IsInputKey :
keyData : Keys -> bool
override IsInputKey :
keyData : Keys -> bool |
Parameters
- keyData
- Type: System.Windows.Forms..::..Keys
One of the Keys values.
Return Value
Type:
Boolean
true if the specified key is a regular input key; otherwise, false.
See Also