System.Actions.TContainedActionLink.DefaultIsLinked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DefaultIsLinked(var Result: Boolean); virtual;

C++

virtual void __fastcall DefaultIsLinked(bool &Result);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Actions.pas
System.Actions.hpp
System.Actions TContainedActionLink

Description

Introduces an interface for retrieving whether a property of the action link's client is linked with the corresponding property of the action.

As implemented in TContainedActionLink, DefaultIsLinked merely checks that the Action property specifies a descendant of TContainedAction (that is, it is an action having all standard properties of the TContainedAction class), and if so, returns True.

See Also