DataGridViewRowEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle row-related events of a DataGridView.
- C#
- VB.NET
public delegate void DataGridViewRowEventHandler(Object sender, DataGridViewRowEventArgs e)
Public Delegate Sub DataGridViewRowEventHandler(ByVal sender As [Object], ByVal e As DataGridViewRowEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | DataGridViewRowEventArgs | A DataGridViewRowEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| DataGridView.DefaultValuesNeeded | Fired when the user enters the row for new records so that it can be populated with default values. |
| DataGridView.NewRowNeeded | Fired when the VirtualMode property of the DataGridView is true and the user navigates to the new row at the bottom of the DataGridView. |
| DataGridView.RowHeightChanged | Fired when the value of the Height property for a row changes. |
| DataGridView.RowMinimumHeightChanged | Fired when the value of the MinimumHeight property for a row changes. |
| DataGridView.RowMaximumHeightChanged | Fired when the value of the MaximumHeight property for a row changes. |
| DataGridView.UserAddedRow | Fired when the user has finished adding a row to the DataGridView control. |
| DataGridView.UserDeletedRow | Fired when the user has finished deleting a row from the DataGridView control. |
| DataGridView.RowErrorTextChanged | Fired when the ErrorText property of a row changes. |
| DataGridView.RowExpanded | Fired when a parent row is expanded. |
| DataGridView.RowCollapsed | Fired when a parent row is collapsed. |