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