DataGridView.ProcessTabKey(Keys) Method

Definition

Processes the TAB key.

protected:
 bool ProcessTabKey(System::Windows::Forms::Keys keyData);
protected bool ProcessTabKey (System.Windows.Forms.Keys keyData);
member this.ProcessTabKey : System.Windows.Forms.Keys -> bool
Protected Function ProcessTabKey (keyData As Keys) As Boolean

Parameters

keyData
Keys

A bitwise combination of Keys values that represents the key or keys to process.

Returns

true if the key was processed; otherwise, false.

Exceptions

The TAB key would cause the control to enter edit mode, but the EditType property of the new current cell does not indicate a class that derives from Control and implements IDataGridViewEditingControl.

This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the DataError event or the handler has set the ThrowException property to true.

Applies to

See also