DataTable.RejectChanges Metodo

Definizione

Annulla tutte le modifiche apportate alla tabella dal momento in cui è stata caricata oppure dall'ultima volta in cui è stato chiamato il metodo AcceptChanges().

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

Esempio

Nell'esempio seguente vengono apportate diverse modifiche a un DataTableoggetto , ma le modifiche vengono rifiutate richiamando il RejectChanges metodo .

private void ShowRejectChanges(DataTable table)
{
    // Print the values of row 1, in the column named "CompanyName."
    Console.WriteLine(table.Rows[1]["CompanyName"]);

    // Make Changes to the column named "CompanyName."
    table.Rows[1]["CompanyName"] = "Taro";

    // Reject the changes.
    table.RejectChanges();

    // Print the original values:
    Console.WriteLine(table.Rows[1]["CompanyName"]);
}
Private Sub ShowRejectChanges(table As DataTable)
    ' Print the values of row 1, in the column named "CompanyName."
    Console.WriteLine(table.Rows(1)("CompanyName"))

    ' Make Changes to the column named "CompanyName."
    table.Rows(1)("CompanyName") = "Taro"

    ' Reject the changes.
    table.RejectChanges()

    ' Print the original values:
    Console.WriteLine(table.Rows(1)("CompanyName"))
End Sub

Commenti

Quando RejectChanges viene chiamato, tutti gli DataRow oggetti ancora in modalità di modifica annullano le modifiche. Le nuove righe vengono rimosse. Righe con l'oggetto DataRowState impostato su Modified o Deleted tornano allo stato originale.

Si applica a

Vedi anche