DataGridViewRowEventHandler

Wisej.Web.DataGridViewRowEventHandler

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents the method that will handle row-related events of a DataGridView.

public delegate void DataGridViewRowEventHandler(Object sender, DataGridViewRowEventArgs e)

Parameters

NameTypeDescription

sender

The source of the event.

e

A DataGridViewRowEventArgs that contains the event data.

Fired By

NameDescription

Fired when the user enters the row for new records so that it can be populated with default values.

Fired when the VirtualMode property of the DataGridView is true and the user navigates to the new row at the bottom of the DataGridView.

Fired when the value of the Height property for a row changes.

Fired when the value of the MinimumHeight property for a row changes.

Fired when the value of the MaximumHeight property for a row changes.

Fired when the user has finished adding a row to the DataGridView control.

Fired when the user has finished deleting a row from the DataGridView control.

Fired when the ErrorText property of a row changes.

Fired when a parent row is expanded.

Fired when a parent row is collapsed.

Last updated