FMX.Controls.TControl.OnExit

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnExit: TNotifyEvent read FOnExit write FOnExit;

C++

__property System::Classes::TNotifyEvent OnExit = {read=FOnExit, write=FOnExit};

Properties

Type Visibility Source Unit Parent
event public
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TControl

Description

Occurs when the input focus is taken from the control.

OnExit also occurs when DoExit is called.

Write an event handler for OnExit to specify what happens when the input focus is taken from the control.

See Also