DataGridViewHeaderCell.OnMouseUp(DataGridViewCellMouseEventArgs) Method

Definition

Called when the mouse button is released while the pointer is over the cell.

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

Parameters

e
DataGridViewCellMouseEventArgs

A DataGridViewCellMouseEventArgs that contains information about the mouse position.

Remarks

The OnMouseUp method sets the ButtonState to Normal if the left mouse button was released and visual styles are enabled for headers. For more information about visual styles for headers, see the DataGridView.EnableHeadersVisualStyles property.

This method is similar to the DataGridView.OnCellMouseUp method. It is called in the same circumstances in which a DataGridView.CellMouseUp event is raised, but it does not actually raise the event.

Notes to Inheritors

When overriding OnMouseUp(DataGridViewCellMouseEventArgs) in a derived class, be sure to call the base class's OnMouseUp(DataGridViewCellMouseEventArgs) method.

Applies to

See also