FMX.ActnList.TActionLink.EnabledLinked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property EnabledLinked: Boolean read IsEnabledLinked;

C++

__property bool EnabledLinked = {read=IsEnabledLinked, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.ActnList.pas
FMX.ActnList.hpp
FMX.ActnList TActionLink

Description

Determines whether a value of the Enabled property of the action assigned to the action link should be propagated to the Enabled property of the client of the action link.

EnabledLinked provides the following behavior:

  • EnabledLinked returns False if the action, assigned to the action link, belongs to TCustomViewAction and the component of this action equals the client of the action link. This means that a value of the Enabled property of TCustomViewAction type actions is not propagated to the Enabled property of a client of the action link.
  • Otherwise, EnabledLinked returns True. This means that a value of the Enabled property of a linked action is propagated to the Enabled properties of a client of the action link.

See IsEnabledLinked.

See Also