DataGridView での移動に使用されるキーを処理します。

Namespace: YiaoWang.Windows.Forms
Assembly: YiaoWang.Windows.Forms (YiaoWang.Windows.Forms.dll 内) バージョン: 2.11.5.7 (2.11.5.7)

Syntax

C#
protected override bool ProcessDataGridViewKey(
	KeyEventArgs e
)
Visual Basic
Protected Overrides Function ProcessDataGridViewKey ( _
	e As KeyEventArgs _
) As Boolean

Parameters

e
Type: System.Windows.Forms..::..KeyEventArgs
押されたキーに関する情報を格納します。

Return Value

キーが処理された場合は true。それ以外の場合は false。

Remarks

OnKeyDown だと KeyCode.Left、KeyCode.Right が取得でないため、 DataGridViewComboBoxEditingControl がアクティブな場合、この関数を使用して、 DataGridViewComboBoxEditingControl_KeyDown にメッセージを送っています。

See Also