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