Fmx.Bind.Navigator.TFMXBindNavigateAction.ExecuteTarget

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ExecuteTarget(Target: TObject); override;

C++

virtual void __fastcall ExecuteTarget(System::TObject* Target);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Fmx.Bind.Navigator.pas
Fmx.Bind.Navigator.hpp
Fmx.Bind.Navigator TFMXBindNavigateAction

Description

Introduces an interface for invoking an action on a target client component or control.

Fmx.Bind.Navigator.TFMXBindNavigateAction.ExecuteTarget inherits from System.Classes.TBasicAction.ExecuteTarget. All content below this line refers to System.Classes.TBasicAction.ExecuteTarget.

Introduces an interface for invoking an action on a target client component or control.

ExecuteTarget does nothing in TBasicAction. ExecuteTarget was introduced in TBasicAction so that descendants can override it to initiate the action on the target. For example, an edit action that performs copying might copy the contents of an edit control to the clipboard.

See Also