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