Bewerken

DataGridViewCellStateChangedEventArgs Class

Definition

Provides data for the CellStateChanged event.

public ref class DataGridViewCellStateChangedEventArgs : EventArgs
public class DataGridViewCellStateChangedEventArgs : EventArgs
type DataGridViewCellStateChangedEventArgs = class
    inherit EventArgs
Public Class DataGridViewCellStateChangedEventArgs
Inherits EventArgs
Inheritance
DataGridViewCellStateChangedEventArgs

Examples

The following code example illustrates the use of this type.

private void dataGridView1_CellStateChanged(object sender,
    DataGridViewCellStateChangedEventArgs e)
{
    DataGridViewElementStates state = e.StateChanged;
    string msg = String.Format("Row {0}, Column {1}, {2}",
        e.Cell.RowIndex, e.Cell.ColumnIndex, e.StateChanged);
    MessageBox.Show(msg, "Cell State Changed");
}
Private Sub dataGridView1_CellStateChanged(ByVal sender As Object, _
    ByVal e As DataGridViewCellStateChangedEventArgs) _
    Handles dataGridView1.CellStateChanged

    Dim state As DataGridViewElementStates = e.StateChanged
    Dim msg As String = String.Format( _
        "Row {0}, Column {1}, {2}", _
        e.Cell.RowIndex, e.Cell.ColumnIndex, e.StateChanged)
    MessageBox.Show(msg, "Cell State Changed")

End Sub

Remarks

Use the Cell property to determine which cell changed. Use the StateChanged property to determine which cell state changed.

For more information about how to handle events, see Handling and Raising Events.

Constructors

Name Description
DataGridViewCellStateChangedEventArgs(DataGridViewCell, DataGridViewElementStates)

Initializes a new instance of the DataGridViewCellStateChangedEventArgs class.

Properties

Name Description
Cell

Gets the DataGridViewCell that has a changed state.

StateChanged

Gets the state that has changed on the cell.

Applies to

See also