Skip to main content
Version: 3.5

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
senderObjectThe source of the event.
eDataGridViewRowEventArgsA DataGridViewRowEventArgs that contains the event data.

Fired By

NameDescription
DataGridView.DefaultValuesNeededFired when the user enters the row for new records so that it can be populated with default values.
DataGridView.NewRowNeededFired when the VirtualMode property of the DataGridView is true and the user navigates to the new row at the bottom of the DataGridView.
DataGridView.RowHeightChangedFired when the value of the Height property for a row changes.
DataGridView.RowMinimumHeightChangedFired when the value of the MinimumHeight property for a row changes.
DataGridView.RowMaximumHeightChangedFired when the value of the MaximumHeight property for a row changes.
DataGridView.UserAddedRowFired when the user has finished adding a row to the DataGridView control.
DataGridView.UserDeletedRowFired when the user has finished deleting a row from the DataGridView control.
DataGridView.RowErrorTextChangedFired when the ErrorText property of a row changes.
DataGridView.RowExpandedFired when a parent row is expanded.
DataGridView.RowCollapsedFired when a parent row is collapsed.