DataGridViewRowStateChangedEventArgs Constructor

Definition

Initializes a new instance of the DataGridViewRowStateChangedEventArgs class.

public:
 DataGridViewRowStateChangedEventArgs(System::Windows::Forms::DataGridViewRow ^ dataGridViewRow, System::Windows::Forms::DataGridViewElementStates stateChanged);
public DataGridViewRowStateChangedEventArgs (System.Windows.Forms.DataGridViewRow dataGridViewRow, System.Windows.Forms.DataGridViewElementStates stateChanged);
new System.Windows.Forms.DataGridViewRowStateChangedEventArgs : System.Windows.Forms.DataGridViewRow * System.Windows.Forms.DataGridViewElementStates -> System.Windows.Forms.DataGridViewRowStateChangedEventArgs
Public Sub New (dataGridViewRow As DataGridViewRow, stateChanged As DataGridViewElementStates)

Parameters

dataGridViewRow
DataGridViewRow

The DataGridViewRow that has a changed state.

stateChanged
DataGridViewElementStates

One of the DataGridViewElementStates values indicating the state that has changed on the row.

Exceptions

.NET 6 and later versions: dataGridViewRow is null.

Remarks

This constructor uses the parameter values to initialize the Row and StateChanged properties.

Applies to

See also