DataRow.EndEdit 方法   
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
终止该行的编辑。
public:
 void EndEdit();public void EndEdit ();member this.EndEdit : unit -> unitPublic 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 发生异常,则会生成异常。