FMX.Objects.TSelection.DoMouseLeave

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoMouseLeave; override;

C++

virtual void __fastcall DoMouseLeave();

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Objects.pas
FMX.Objects.hpp
FMX.Objects TSelection

Description

DoMouseLeave is called automatically when the mouse pointer leaves the TSelection object.

DoMouseLeave of the TSelection object calls the inherited FMX.Controls.TControl.DoMouseLeave method which starts animation by calling StartTriggerAnimation, applies effects by calling ApplyTriggerEffect, and calls the FMX.Controls.TControl.OnMouseLeave event handler. Then DoMouseLeave frees the grip controls. Finally, DoMouseLeave initializes the TSelection shape repaint operation.

Override the protected DoMouseLeave method to provide other responses when the mouse pointer leaves the TSelection object.

See Also