DataRow.EndEdit 方法

定義

結束資料列上發生的編輯。

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

例外狀況

RowChanging 事件中呼叫該方法。

編輯中斷條件約束。

資料列屬於資料表,而且編輯嘗試變更唯讀資料行的值。

編輯嘗試將 Null 值置於 AllowDBNull 為 False 的資料行。

範例

如果驗證函式傳回 true,下列範例會 EndEdit 使用 方法來結束值的編輯 DataRow

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

備註

當您設定 屬性時,如果在事件中 RowChanging 發生例外狀況,就會產生例外狀況。

適用於

另請參閱