Determines whether the specified key is a regular input key or a special key that requires preprocessing.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Syntax . . :: . Boolean
true if the specified key is a regular input key; otherwise, false.
Protected Overrides Function IsInputKey ( _
keyData As Keys _
) As Booleanprotected override bool IsInputKey(
Keys keyData
)protected:
virtual bool IsInputKey(
Keys keyData
) overrideabstract IsInputKey :
keyData:Keys -> bool
override IsInputKey :
keyData:Keys -> bool Parameters
- keyData
- Type: System.Windows.Forms
. . :: . Keys
One of the Keys values.
Return Value
Type: Systemtrue if the specified key is a regular input key; otherwise, false.
Remarks
Call this method during window-message preprocessing to determine whether the specified key is a regular input key that should be sent directly to the tab control or a special key (such as PAGE UP and PAGE DOWN) that should preprocessed. In the latter case, send the key to the control only if it is not consumed by the preprocessing phase.
Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.