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