API:FMX.Controls.TControlActionLink.Client

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Client: TControl read GetClient;

C++

__property TControl* Client = {read=GetClient};

Properties

Type Visibility Source Unit Parent
property public
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TControlActionLink

Description

Keeps the client linked by the action link to an action.

FMX.Controls.TControlActionLink.Client inherits from FMX.ActnList.TActionLink.Client. All content below this line refers to FMX.ActnList.TActionLink.Client.

Keeps the client linked by the action link to an action.

Clients are UI elements (components) in an application that use actions. Clients can be controls, menu items, forms, and toolbar buttons. An action can be associated (linked) to several clients. Such associations provide an easy way to synchronize values of properties of the action and of associated clients. For example, changes of the visible and enabled states and of the caption of an action can be propagated to values of corresponding properties of associated controls, menu item, and toolbar buttons. An associated action handles the response when the user clicks these clients. That is, each such client has its properties dynamically updated by the associated action and forwards user commands to the action for a response.

See Also