Share via


FormActiveXControl.mouseLeave Method

Is called when the user moves the mouse pointer out of the control area.

Syntax

public void mouseLeave()

Run On

Client

Examples

The following example writes to the information log when the mouse pointer leaves the control.

public void mouseLeave() 
{ 
    info (strfmt("The mouse pointer has left the %1 control.", 
                 this.name()) ); 
 
    super(); 
}

See Also

FormActiveXControl Class

Event Method Sequences in Form Scenarios

FormActiveXControl.mouseEnter Method