Skip to main content
Version: 4.1

DataGridViewRowStateChangedEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the RowStateChanged event of a DataGridView.

public class DataGridViewRowStateChangedEventArgs : EventArgs

Constructors

Instance member DataGridViewRowStateChangedEventArgs(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 member DataGridViewRowStateChangedEventArgs(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 member Row

DataGridViewRow: Returns the DataGridViewRow that has a changed state.

Instance member RowIndex

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

Instance member StateChanged

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.