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