FMX.ListBox.TListBoxItem.EnterChildren

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function EnterChildren(AObject: IControl): Boolean; override;

C++

virtual bool __fastcall EnterChildren(Fmx::Types::_di_IControl AObject);

Properties

Type Visibility Source Unit Parent
function protected
FMX.ListBox.pas
FMX.ListBox.hpp
FMX.ListBox TListBoxItem

Description

Checks whether the input is taken by the control or by its parent.

FMX.ListBox.TListBoxItem.EnterChildren inherits from FMX.Controls.TControl.EnterChildren. All content below this line refers to FMX.Controls.TControl.EnterChildren.

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.

See Also