This documentation is archived and is not being maintained.
FormTreeControl.mouseLeave Method [AX 2012]
Is called when the user moves the mouse pointer out of the control.
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();
}