Vcl.Controls.TWinControl.DoExit

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoExit; dynamic;

C++

DYNAMIC void __fastcall DoExit();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TWinControl

Description

Responds to losing input focus.

DoExit is called automatically when the control loses the input focus. As implemented in TWinControl, DoExit calls the OnExit event handler, if defined.

Descendant classes that override DoExit should always call the inherited method.

See Also