DataGridViewHeaderCell.OnMouseLeave(Int32) Method

Definition

Called when the mouse pointer leaves the cell.

protected:
 override void OnMouseLeave(int rowIndex);
protected override void OnMouseLeave (int rowIndex);
override this.OnMouseLeave : int -> unit
Protected Overrides Sub OnMouseLeave (rowIndex As Integer)

Parameters

rowIndex
Int32

The index of the row containing the cell.

Remarks

The OnMouseLeave method sets the ButtonState to Normal if it was in another state 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.OnCellMouseLeave method. It is called in the same circumstances in which a DataGridView.CellMouseLeave event is raised, but it does not actually raise the event.

Notes to Inheritors

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

Applies to

See also