FMX.Forms.TCommonCustomForm.Active

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Active: Boolean read FActive write SetActive;

C++

__property bool Active = {read=FActive, write=SetActive, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

Specifies whether the form has focus.

Use Active to determine whether the form has focus. The Active form receives all keyboard input. If it has a title bar, it is drawn using the active colors specified by the operating system.

If Active is True, the form has focus; if Active is False, the form does not have focus.

See Also