TextBoxBase.IsInputKey(Keys) 方法

定义

确定指定的键是输入键还是需要预处理的特殊键。

protected:
 override bool IsInputKey(System::Windows::Forms::Keys keyData);
protected override bool IsInputKey (System.Windows.Forms.Keys keyData);
override this.IsInputKey : System.Windows.Forms.Keys -> bool
Protected Overrides Function IsInputKey (keyData As Keys) As Boolean

参数

keyData
Keys

键值之一。

返回

Boolean

如果指定的键是输入键,则为 true;否则为 false

注解

The IsInputKey method returns true when the keyData parameter includes the Tab value and the AcceptsTab property is true. IsInputKeyfalse如果keyData同时包含这两个值Tab,则Control返回 。

适用于