FMX.ActnList.TActionLink.OnExecuteLinked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnExecuteLinked: Boolean read IsOnExecuteLinked;

C++

__property bool OnExecuteLinked = {read=IsOnExecuteLinked, nodefault};

Properties

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

Description

Determines whether the OnExecute event handler of the action assigned to the action link should be propagated to the corresponding execution event handler of the client of the action link.

OnExecuteLinked provides the following behavior:

Also OnExecuteLinked returns False if the client does not support an appropriate execution event.
  • Otherwise, OnExecuteLinked returns True. This means that a value of the OnExecute property of a linked action is propagated to the appropriate event handler of a client of the action link. Usually this is the OnClick event handler.

See IsOnExecuteLinked.

See Also