Skip to main content
Version: 3.5

DataGridViewRowStateChangedEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the RowStateChanged event of a DataGridView.

public class DataGridViewRowStateChangedEventArgs : EventArgs

Constructors

Instance memberDataGridViewRowStateChangedEventArgs(dataGrid, rowIndex, state)

Initializes a new instance of DataGridViewRowStateChangedEventArgs.

NameTypeDescription
dataGridDataGridView
rowIndexInt32The index of the DataGridViewRow that the event occurred for.
stateDataGridViewElementStatesOne of the DataGridViewElementStates values indicating the state that has changed on the row.

Instance memberDataGridViewRowStateChangedEventArgs(row, state)

Initializes a new instance of the DataGridViewRowStateChangedEventArgs class.

NameTypeDescription
rowDataGridViewRowThe DataGridViewRow that has a changed state.
stateDataGridViewElementStatesOne of the DataGridViewElementStates values indicating the state that has changed on the row.

Properties

Instance memberRow

DataGridViewRow: Returns the DataGridViewRow that has a changed state.

Instance memberRowIndex

Int32: Returns the index of the DataGridViewRow that has a changed state.

Instance memberStateChanged

DataGridViewElementStates: Returns the state that has changed on the row.

Used By

NameDescription
DataGridViewRowStateChangedEventHandlerRepresents the method that will handle the RowStateChanged event of a DataGridView.