DataRow.EndEdit Méthode

Définition

Termine la modification de la ligne en cours.

public:
 void EndEdit();
public void EndEdit ();
member this.EndEdit : unit -> unit
Public Sub EndEdit ()

Exceptions

La méthode a été appelée au sein de l'événement RowChanging.

La modification a interrompu une contrainte.

La ligne appartient à la table et la modification a tenté de changer la valeur d'une colonne en lecture seule.

La modification a tenté d'insérer une valeur null dans une colonne dont AllowDBNull a la valeur false.

Exemples

L’exemple suivant utilise la EndEdit méthode pour mettre fin à la modification d’une DataRow valeur si la fonction de validation retourne true.

private void AcceptOrReject(DataRow row)
{
    // Use a function to validate the row's values.
    // If the function returns true, end the edit;
    // otherwise cancel it.
    if(ValidateRow(row))
        row.EndEdit();
    else
        row.CancelEdit();
}

private bool ValidateRow(DataRow thisRow)
{
    bool isValid = true;
    // Insert code to validate the row values.
    // Set the isValid variable.
    return isValid;
}
 Private Sub AcceptOrReject(ByVal row As DataRow)
    ' Use a function to validate the row's values.
    ' If the function returns true, end the edit; 
    ' otherwise cancel it.
    If ValidateRow(row) Then
       row.EndEdit()
    Else
       row.CancelEdit()
    End If
End Sub
 
Private Function ValidateRow(ByVal row As DataRow) As Boolean
    Dim isValid As Boolean
    ' Insert code to validate the row values. 
    ' Set the isValid variable.
    ValidateRow = isValid
End Function

Remarques

Lorsque vous définissez la propriété , une exception est générée si une exception se produit dans l’événement RowChanging .

S’applique à

Voir aussi