DataGridViewCell.OnKeyPress(KeyPressEventArgs, Int32) Method

Definition

Called when a key is pressed while the focus is on a cell.

protected:
 virtual void OnKeyPress(System::Windows::Forms::KeyPressEventArgs ^ e, int rowIndex);
protected virtual void OnKeyPress (System.Windows.Forms.KeyPressEventArgs e, int rowIndex);
abstract member OnKeyPress : System.Windows.Forms.KeyPressEventArgs * int -> unit
override this.OnKeyPress : System.Windows.Forms.KeyPressEventArgs * int -> unit
Protected Overridable Sub OnKeyPress (e As KeyPressEventArgs, rowIndex As Integer)

Parameters

e
KeyPressEventArgs

A KeyPressEventArgs that contains the event data.

rowIndex
Int32

The index of the cell's parent row.

Remarks

This method is similar to the Control.OnKeyPress method. It is called in the same circumstances in which a KeyPress event is raised, but it does not actually raise the event.

Applies to

See also