DataRow.CancelEdit-Methode
Bricht den aktuellen Bearbeitungsvorgang für die Zeile ab.
Namespace: System.Data
Assembly: System.Data (in system.data.dll)
Syntax
'Declaration
Public Sub CancelEdit
'Usage
Dim instance As DataRow
instance.CancelEdit
public void CancelEdit ()
public:
void CancelEdit ()
public void CancelEdit ()
public function CancelEdit ()
Ausnahmen
Ausnahmetyp | Bedingung |
---|---|
Die Methode wurde innerhalb des RowChanging-Ereignisses aufgerufen. |
Hinweise
Weitere Informationen finden Sie unter der BeginEdit-Methode.
Beispiel
Im folgenden Beispiel wird der Wert einer Spalte in der letzten Zeile eines DataGrid-Steuerelements bearbeitet. Im Beispiel werden die BeginEdit-Methode und die EndEdit-Methode verwendet, um den Wert der Spalte zu bearbeiten und einen Commit für die Änderung in der Spalte auszuführen.
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
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;
}
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
DataRow-Klasse
DataRow-Member
System.Data-Namespace
AcceptChanges
BeginEdit
DataViewRowState
EndEdit
HasVersion
Item
RowState