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