Share via


FormTreeControl.mouseLeave Method

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

Syntax

public void mouseLeave()

Run On

Client

Examples

The following example writes to the Infolog when the mouse pointer leaves the control area.

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

See Also

FormTreeControl Class

Event Method Sequences in Form Scenarios

FormTreeControl.mouseEnter Method