FormActiveXControl.mouseLeave Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Is called when the user moves the mouse pointer out of the control area.
public:
override void mouseLeave();
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public override void mouseLeave ();
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
override this.mouseLeave : unit -> unit
Public Overrides Sub mouseLeave ()
- Attributes
-
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute
Remarks
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();
}