Share via


DataGridViewCellStateChangedEventArgs.Cell Propiedad

Definición

Obtiene el objeto DataGridViewCell en que ha cambiado un estado.

public:
 property System::Windows::Forms::DataGridViewCell ^ Cell { System::Windows::Forms::DataGridViewCell ^ get(); };
public System.Windows.Forms.DataGridViewCell Cell { get; }
member this.Cell : System.Windows.Forms.DataGridViewCell
Public ReadOnly Property Cell As DataGridViewCell

Valor de propiedad

Objeto DataGridViewCell cuyo estado ha cambiado.

Ejemplos

En el ejemplo de código siguiente se muestra el uso de este tipo.

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

Se aplica a

Consulte también