TBasicAction.ExecuteTarget

Executes the action on the Target object

Declaration

Source position: classesh.inc line 2191

public 
  procedure ExecuteTarget(Target: TObject);  Virtual;

Description

ExecuteTarget performs the action on the Target object. In TBasicAction this method does nothing. Descendant classes should implement the action to be performed. For instance an action to post data in a dataset could call the Post method of the dataset.

An application programmer should never call ExecuteTarget directly.

See also

Name Description
Execute Triggers the OnExecute event
UpdateTarget Executes the action on the Target object
HandlesTarget Determines whether Target can be handled by this action