DataGridViewCheckBoxCell.OnKeyDown(KeyEventArgs, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called when a character key is pressed while the focus is on a cell.
protected:
override void OnKeyDown(System::Windows::Forms::KeyEventArgs ^ e, int rowIndex);
protected override void OnKeyDown (System.Windows.Forms.KeyEventArgs e, int rowIndex);
override this.OnKeyDown : System.Windows.Forms.KeyEventArgs * int -> unit
Protected Overrides Sub OnKeyDown (e As KeyEventArgs, rowIndex As Integer)
Parameters
A KeyEventArgs that contains the event data.
- rowIndex
- Int32
The row index of the current cell, or -1 if the cell is not owned by a row.
Remarks
When activated by the space key, this method causes the cell's user interface (UI) to be updated.
This method is similar to the Control.OnKeyDown method. It is called in the same circumstances in which a Control.KeyDown event is raised, but it does not actually raise the event.