BindingSource.EndEdit Method

Definition

Applies pending changes to the underlying data source.

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

Remarks

When the EndEdit method is called, all pending changes are applied to the underlying data source.

This method has no effect unless the objects contained by the data source implement the IEditableObject interface. If the objects do not implement the IEditableObject interface, changes to the data are copied to the underlying data source immediately after each change.

This method raises the ListChanged event.

Applies to

See also