DataGridViewCell.KeyEntersEditMode(KeyEventArgs) Method

Definition

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

public:
 virtual bool KeyEntersEditMode(System::Windows::Forms::KeyEventArgs ^ e);
public virtual bool KeyEntersEditMode (System.Windows.Forms.KeyEventArgs e);
abstract member KeyEntersEditMode : System.Windows.Forms.KeyEventArgs -> bool
override this.KeyEntersEditMode : System.Windows.Forms.KeyEventArgs -> bool
Public Overridable Function KeyEntersEditMode (e As KeyEventArgs) As Boolean

Parameters

e
KeyEventArgs

A KeyEventArgs that represents the key that was pressed.

Returns

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

Remarks

Override this method to create a custom cell that is editable.

Applies to

See also