|
|
|
|
OnItemRemoved Method, SftTree Class |
Raises the ItemRemoved event.
Syntax SftTree Class (Softelvdm.SftTreeNET)
VB |
Protected Overridable Sub OnItemRemoved( ByVal e As ItemRemovedEventArgs ) |
C# |
protected virtual void OnItemRemoved( ItemRemovedEventArgs e ); |
C++ |
protected: virtual void OnItemRemoved( ItemRemovedEventArgs^ e ); |
e
The event data.
Comments
The OnItemRemoved method raises the ItemRemoved event.
Raising an event invokes the event handler through a delegate.
The OnItemRemoved 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.
When overriding OnItemRemoved in a derived class, make sure to call the base class's OnItemRemoved method so that registered delegates receive the event.