DataGridViewTextBoxCell.OnMouseClick(DataGridViewCellMouseEventArgs) Method

Definition

Called by DataGridView when the mouse leaves a cell.

protected:
 override void OnMouseClick(System::Windows::Forms::DataGridViewCellMouseEventArgs ^ e);
protected override void OnMouseClick (System.Windows.Forms.DataGridViewCellMouseEventArgs e);
override this.OnMouseClick : System.Windows.Forms.DataGridViewCellMouseEventArgs -> unit
Protected Overrides Sub OnMouseClick (e As DataGridViewCellMouseEventArgs)

Parameters

Remarks

OnMouseClick determines whether the mouse click is part of a double click that starts an edit session.

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

Notes to Inheritors

When overriding OnMouseClick(DataGridViewCellMouseEventArgs) in a derived class, be sure to call the base class's OnMouseClick(DataGridViewCellMouseEventArgs) method so that registered delegates receive the event.

Applies to

See also