API:Fmx.Bind.Navigator.TFMXBindNavigateLast.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AComponent: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Fmx.Bind.Navigator.pas
Fmx.Bind.Navigator.hpp
Fmx.Bind.Navigator TFMXBindNavigateLast

Description


Creates and initializes a TAction object.

Fmx.Bind.Navigator.TFMXBindNavigateLast.Create inherits from FMX.ActnList.TAction.Create. All content below this line refers to FMX.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 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