DataRowView.BeginEdit Method

Definition

Begins an edit procedure.

C#
public void BeginEdit();

Implements

Examples

The following example edits a row in a DataRowView. calling the BeginEdit before, and EndEdit afterwards.

C#
private void EditDataRowView(DataRowView rowView,
    string columnToEdit)
{
    rowView.BeginEdit();
    rowView[columnToEdit] = textBox1.Text;

    // Validate the input with a function.
    if (ValidateCompanyName(rowView[columnToEdit]))
        rowView.EndEdit();
    else
        rowView.CancelEdit();
}

private bool ValidateCompanyName(object valuetoCheck)
{
    // Insert code to validate the value.
    return true;
}

Remarks

Use AddNew to add a DataRowView.

The BeginEdit method is identical to the DataRow.BeginEdit method of the DataRow. After calling BeginEdit, any changes made to the DataRowView can be rolled back by calling CancelEdit. Call the BeginEdit method before allowing users to change row values. After values have been changed, you retrieve the new values by setting the RowVersion to DataRowVersion.Proposed. Check the values with a business rule, and roll back the changes if needed by calling CancelEdit, or call EndEdit to accept the changes.

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also