BindingSource.OnAddingNew(AddingNewEventArgs) Method

Definition

Raises the AddingNew event.

protected:
 virtual void OnAddingNew(System::ComponentModel::AddingNewEventArgs ^ e);
protected virtual void OnAddingNew (System.ComponentModel.AddingNewEventArgs e);
abstract member OnAddingNew : System.ComponentModel.AddingNewEventArgs -> unit
override this.OnAddingNew : System.ComponentModel.AddingNewEventArgs -> unit
Protected Overridable Sub OnAddingNew (e As AddingNewEventArgs)

Parameters

e
AddingNewEventArgs

An EventArgs that contains the event data.

Remarks

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

The OnAddingNew method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors

When overriding OnAddingNew(AddingNewEventArgs) in a derived class, be sure to call the base class's OnAddingNew(AddingNewEventArgs) method so that registered delegates receive the event.

Applies to

See also