DataGridViewComboBoxCell.KeyEntersEditMode(KeyEventArgs) Method

Definition

Determines if edit mode should be started based on the given key.

public override bool KeyEntersEditMode (System.Windows.Forms.KeyEventArgs e);

Parameters

e
KeyEventArgs

A KeyEventArgs that represents the key that was pressed.

Returns

true if edit mode should be started; otherwise, false.

Remarks

When the EditMode property of the DataGridView control is set to EditOnKeystroke or EditOnKeystrokeOrF2, the control uses this method to determine whether a key other than F2 that is pressed by the user while this cell has focus will cause the cell to enter edit mode.

This method returns true if the e parameter indicates one of the following keys or key combinations: F4, ALT+UP ARROW, ALT+DOWN ARROW, or an ordinary data-entry key (such as a letter, number, punctuation mark, or the SPACE key) unmodified by ALT or CTRL, excluding SHIFT+SPACE, which is used by the control for selection purposes. For more information, see Default Keyboard and Mouse Handling in the Windows Forms DataGridView Control.

Applies to

Produit Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also