Classes.TBasicAction.ExecuteTarget
From RAD Studio VCL Reference
Contents |
Delphi Information
From Classes.pas
procedure ExecuteTarget(Target: TObject); virtual;
Unit: Classes
Type: method
Visibility: public
Member Of: TBasicAction
C++ Information
From Classes.hpp
virtual void __fastcall ExecuteTarget(System::TObject * Target);
Unit: Classes
Type: method
Visibility: public
Member Of: TBasicAction
Description
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.