DataGridViewRowStateChangedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the RowStateChanged event of a DataGridView.
- C#
- VB.NET
public class DataGridViewRowStateChangedEventArgs : EventArgs
Public Class DataGridViewRowStateChangedEventArgs
Inherits EventArgs
Constructors
DataGridViewRowStateChangedEventArgs(dataGrid, rowIndex, state)
Initializes a new instance of DataGridViewRowStateChangedEventArgs.
| Name | Type | Description |
|---|---|---|
| dataGrid | DataGridView | |
| rowIndex | Int32 | The index of the DataGridViewRow that the event occurred for. |
| state | DataGridViewElementStates | One of the DataGridViewElementStates values indicating the state that has changed on the row. |
DataGridViewRowStateChangedEventArgs(row, state)
Initializes a new instance of the DataGridViewRowStateChangedEventArgs class.
| Name | Type | Description |
|---|---|---|
| row | DataGridViewRow | The DataGridViewRow that has a changed state. |
| state | DataGridViewElementStates | One of the DataGridViewElementStates values indicating the state that has changed on the row. |
Properties
Row
DataGridViewRow: Returns the DataGridViewRow that has a changed state.
RowIndex
Int32: Returns the index of the DataGridViewRow that has a changed state.
StateChanged
DataGridViewElementStates: Returns the state that has changed on the row.
Used By
| Name | Description |
|---|---|
| DataGridViewRowStateChangedEventHandler | Represents the method that will handle the RowStateChanged event of a DataGridView. |