DataGridViewCellMouseEventHandler

Wisej.Web.DataGridViewCellMouseEventHandler

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents the method that will handle mouse-related events raised by a DataGridView.

public delegate void DataGridViewCellMouseEventHandler(Object sender, DataGridViewCellMouseEventArgs e)

Parameters

NameTypeDescription

sender

The source of the event.

e

A DataGridViewCellMouseEventArgs that contains the event data.

Fired By

NameDescription

Occurs whenever the user clicks anywhere on a cell with the mouse.

Fired when a cell within the DataGridView is double-clicked.

Fired when the mouse pointer moves over the DataGridView control.

Fired when the user presses a mouse button while the pointer is within the boundaries of a cell.

Fired when the user releases a mouse button while over a cell.

Fired when the user clicks within the boundaries of a row header.

Fired when a row header is double-clicked.

Fired when the user clicks a column header.

Fired when a column header is double-clicked.

Last updated