FMX.Controls.TControl.EnterChildren
Delphi
function EnterChildren(AObject: IControl): Boolean; virtual;
C++
virtual bool __fastcall EnterChildren(Fmx::Types::_di_IControl AObject);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | protected | FMX.Controls.pas FMX.Controls.hpp |
FMX.Controls | TControl |
Description
Checks whether the input is taken by the control or by its parent.
EnterChildren returns True if the input is taken directly by the control's parent, and False otherwise.
Usually, EnterChildren returns False. If the control is an item such as TListBoxItem, a TTreeViewItem, or TMenuItem, EnterChildren returns True.