FMX.Edit.Style.TStyledEdit.DoExit

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoExit; override;

C++

virtual void __fastcall DoExit();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.Edit.Style.pas
FMX.Edit.Style.hpp
FMX.Edit.Style TStyledEdit

Description

OnExit event dispatcher.

FMX.Edit.Style.TStyledEdit.DoExit inherits from FMX.Controls.TControl.DoExit. All content below this line refers to FMX.Controls.TControl.DoExit.

OnExit event dispatcher.

DoExit is called automatically when the input focus moves from the current object.

DoExit repaints the control, starts the animation by calling StartTriggerAnimation, and applies effects by calling ApplyTriggerEffect. When a control receives focus, it is highlighted. The animations and effects applied by DoExit background the control.

Override the protected DoExit method to provide other responses when the focus moves from the current control.

See Also