Behavior.OnMouseHover(Glyph, Point) Method

Definition

Called when any mouse-hover message enters the adorner window of the BehaviorService.

public:
 virtual bool OnMouseHover(System::Windows::Forms::Design::Behavior::Glyph ^ g, System::Drawing::Point mouseLoc);
public virtual bool OnMouseHover (System.Windows.Forms.Design.Behavior.Glyph g, System.Drawing.Point mouseLoc);
public virtual bool OnMouseHover (System.Windows.Forms.Design.Behavior.Glyph? g, System.Drawing.Point mouseLoc);
abstract member OnMouseHover : System.Windows.Forms.Design.Behavior.Glyph * System.Drawing.Point -> bool
override this.OnMouseHover : System.Windows.Forms.Design.Behavior.Glyph * System.Drawing.Point -> bool
Public Overridable Function OnMouseHover (g As Glyph, mouseLoc As Point) As Boolean

Parameters

g
Glyph

A Glyph.

mouseLoc
Point

The location at which the hover occurred.

Returns

true if the message was handled; otherwise, false.

Remarks

The OnMouseDoubleClick method is called when any mouse-hover message enters the WndProc of the adorner window of the BehaviorService. The message is first passed here, to the top-most Behavior in the behavior stack. Returning true from this method signifies that the message was handled by the Behavior and should not continue to be processed. From here, the message is sent to the appropriate behavior.

Applies to

See also