OnMouseEnter

Syntax

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

Begin

//set of operators;

End Sub OnMouseEnter;

Parameters

Sender. Parameter that returns the component, generated an event

Args. Parameter that allows to determine the event parameters.

Description

The OnMouseEnter event occurs when mouse cursor enters the component area.

Comments

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

OnMouseEnter

OnMouseMove

OnMouseHover / OnMouseDown / OnMouseWheel

OnMouseUp

OnMouseLeave

See also:

IControl