Vcl.StdActns.THelpContextAction.UpdateTarget

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure UpdateTarget(Target: TObject); override;

C++

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

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.StdActns.pas
Vcl.StdActns.hpp
Vcl.StdActns THelpContextAction

Description

Enables or disables the action, depending on whether there is an active object.

Do not call the UpdateTarget method. This method is called automatically so that actions can update themselves according to current conditions.

In THelpContextAction, UpdateTarget checks whether the global Screen object's ActiveConrol property is assigned. If there is an active control, UpdateTarget sets Enabled to true. If not, UpdateTarget sets Enabled to false.

See Also