Vcl.Bind.Navigator.TBindNavigateApplyUpdates.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AComponent: TComponent); override;

C++

__fastcall virtual TBindNavigateApplyUpdates(System::Classes::TComponent* AComponent)/* overload */;
/* TBindNavigateAction.Create */ inline __fastcall TBindNavigateApplyUpdates(System::Classes::TComponent* AComponent, Data::Bind::Controls::TNavigateButton AButton)/* overload */ : TBindNavigateAction(AComponent, AButton) { }

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.Bind.Navigator.pas
Vcl.Bind.Navigator.hpp
Vcl.Bind.Navigator TBindNavigateApplyUpdates

Description


Creates and initializes a TAction object.

Vcl.Bind.Navigator.TBindNavigateApplyUpdates.Create inherits from Vcl.ActnList.TAction.Create. All content below this line refers to Vcl.ActnList.TAction.Create.

Creates and initializes a TAction object.

Applications do not usually create action objects explicitly. Actions are created automatically when you add them to an action manager or action list component at design time. When instantiating TAction at run time, assign a TActionList or TActionManager component to the new action's ActionList property after calling Create.

Create sets the DisableIfNoHandler to True, that is, the action is inaccessible if it does not have an OnExecute event handler.

See Also