DataGridViewRowEventArgs
Wisej.Web.DataGridViewRowEventArgs
Last updated
Wisej.Web.DataGridViewRowEventArgs
Last updated
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.0.0.0)
Provides data for row-related DataGridView events.
Initializes a new instance of the DataGridViewRowEventArgs class.
Name | Type | Description |
---|---|---|
dataGrid | DataGridView that owns the row. | |
rowIndex | The index of the DataGridViewRow that the event occurred for. |
Throws:
ArgumentNullException dataGrid is null.
ArgumentOutOfRangeException rowIndex is -1 or greater than the number of rows.
Initializes a new instance of the DataGridViewRowEventArgs class.
Name | Type | Description |
---|---|---|
row | The DataGridViewRow that the event occurred for. |
Throws:
ArgumentNullException row is null.
DataGridViewRow: Returns the DataGridViewRow associated with the event.
Int32: Returns a value indicating the row index of the cell that the event occurs for.
Name | Description |
---|---|
Represents the method that will handle row-related events of a DataGridView. |