Vcl.Menus.TMenuActionLink.IsHelpContextLinked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IsHelpContextLinked: Boolean; override;

C++

virtual bool __fastcall IsHelpContextLinked();

Properties

Type Visibility Source Unit Parent
function protected
Vcl.Menus.pas
Vcl.Menus.hpp
Vcl.Menus TMenuActionLink

Description

Retrieves whether the HelpContext properties for the action and for the client of the action link are linked.

Vcl.Menus.TMenuActionLink.IsHelpContextLinked inherits from System.Actions.TContainedActionLink.IsHelpContextLinked. All content below this line refers to System.Actions.TContainedActionLink.IsHelpContextLinked.

Retrieves whether the HelpContext properties for the action and for the client of the action link are linked.

TContainedActionLink descendants call IsHelpContextLinked to determine whether they need to propagate changes made to the action's HelpContext property to the corresponding HelpContext property of the client object:

As implemented in TContainedActionLink, IsHelpContextLinked merely checks that the Action property specifies a descendant of TContainedAction (that is, it is an action having a HelpContext property), and if so, returns True. Descendant classes can override IsHelpContextLinked to determine whether this property is linked with the appropriate client property.

See Also