FMX.Controls.TControl.AbsoluteEnabled
Delphi
property AbsoluteEnabled: Boolean read GetAbsoluteEnabled;
C++
__property bool AbsoluteEnabled = {read=GetAbsoluteEnabled, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | FMX.Controls.pas FMX.Controls.hpp |
FMX.Controls | TControl |
Description
Specifies whether the control is absolutely enabled.
AbsoluteEnabled is True only if Enabled is True and the parent also reports AbsoluteEnabled as True. Therefore, this logic climbs the parent hierarchy to determine whether the control is truly enabled or not.
If Parent is set and the parent's AbsoluteEnabled property is False, AbsoluteEnabled is set to False, otherwise it has the value of the Enabled property.