FMX.ActnList.TActionLink.ShortCutLinked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ShortCutLinked: Boolean read IsShortCutLinked;

C++

__property bool ShortCutLinked = {read=IsShortCutLinked, 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 ShortCut property of the action assigned to the action link should be propagated to the ShortCut property of the client of the action link.

ShortCutLinked provides the following behavior:

  • ShortCutLinked 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 ShortCut property of TCustomViewAction type actions is not propagated to the ShortCut property of a client of the action link.
  • Otherwise, ShortCutLinked returns True. This means that a value of the ShortCut property of a linked action is propagated to the ShortCut properties of a client of the action link.

See IsShortCutLinked.

See Also