DataGridView.CellValidated Événement

Définition

Se produit après que la cellule a été validée.

public:
 event System::Windows::Forms::DataGridViewCellEventHandler ^ CellValidated;
public event System.Windows.Forms.DataGridViewCellEventHandler CellValidated;
public event System.Windows.Forms.DataGridViewCellEventHandler? CellValidated;
member this.CellValidated : System.Windows.Forms.DataGridViewCellEventHandler 
Public Custom Event CellValidated As DataGridViewCellEventHandler 

Type d'événement

Exemples

L’exemple de code suivant montre comment utiliser l’événement CellValidated pour effacer la ErrorText propriété. Dans cet exemple, l’événement CellValidating définit si ErrorText l’utilisateur entre des données qui ne sont pas valides dans une cellule. Cet exemple fait partie d’un exemple plus grand disponible dans l’événement SelectionChanged .

private void DataGridView1_CellValidated(object sender,
    DataGridViewCellEventArgs e)
{
    // Clear any error messages that may have been set in cell validation.
    DataGridView1.Rows[e.RowIndex].ErrorText = null;
}
Private Sub CellValidated(ByVal sender As Object, _
    ByVal e As DataGridViewCellEventArgs) _
    Handles DataGridView1.CellValidated

    ' Clear any error messages that may have been set in cell validation.
    DataGridView1.Rows(e.RowIndex).ErrorText = Nothing
End Sub

Remarques

La gestion de cet événement est utile pour le traitement post-validation de la valeur de cellule.

Pour plus d’informations sur la façon de gérer les événements, consultez gestion et déclenchement d’événements.

S’applique à

Voir aussi