OnMouseHover

Syntax

Sub OnMouseHover(Sender: Object; Args: IMouseEventArgs);

Begin

//set of operators;

End Sub OnMouseHover;

Parameters

Sender. Parameter that returns the component that generated the event.

Args. Parameter that allows to determine the event parameters.

Description

The OnMouseHover event occurs when mouse cursor is held in the component area.

Comments

This event is generated if the mouse cursor is within the component area that is 4*4 pixel sized during 400 milliseconds.

The events connected with mouse cursor occur in the following order:

OnMouseEnter

OnMouseMove

OnMouseHover / OnMouseDown / OnMouseWheel

OnMouseUp

OnMouseLeave

See also:

IControl