Vcl.Controls.TWinControl.DoEnter

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoEnter; dynamic;

C++

DYNAMIC void __fastcall DoEnter();

Properties

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

Description

Respond to receiving input focus.

DoEnter is called automatically when the control receives the input focus. As implemented in TWinControl, DoEnter calls the OnEnter event handler, if defined.

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

See Also