DataGridViewCellEventHandler

Wisej.Web.DataGridViewCellEventHandler

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents the method that will handle DataGridView events related to cell and row operations.

public delegate void DataGridViewCellEventHandler(Object sender, DataGridViewCellEventArgs e)

Parameters

NameTypeDescription

sender

The source of the event.

e

A DataGridViewCellEventArgs that contains the event data.

Fired By

NameDescription

Fired when any part of a cell is clicked.

Fired when the value of a cell changes.

Fired when the command of a cell changes.

Fired when the Style property of a DataGridViewCell changes.

Fired when edit mode stops for the current cell.

Fired when the current cell changes in the DataGridView control or when the control receives input focus.

Fired when a cell loses input focus and is no longer the current cell.

Occurs after the cell has finished validating.

Fired when a row receives input focus but before it becomes the current row.

Fired when a row loses input focus and is no longer the current row.

Occurs after a row has finished validating.

Fired when the user double-clicks anywhere in a cell.

Fired when the mouse pointer enters a cell.

Fired when the mouse pointer leaves a cell.

Fired when the value of the ErrorText property of a cell changes.

Fired when the value of the ToolTipText property of a cell changes.

Fired when the user tabs past the last cell.

Last updated