DataGridViewTextBoxCell.OnMouseClick(DataGridViewCellMouseEventArgs) 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 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
An DataGridViewCellMouseEventArgs that contains the event data.
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.