FMX.Forms.TApplication.Run

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Run;

C++

void __fastcall Run();

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TApplication

Description

Executes the FireMonkey application.

Do not call Run. When creating a new project, the IDE automatically creates a main program block, in the project file, that calls the Run method. When the application is executed, the application's Run method is called.

Run contains the application's main message loop. The call to Run does not return until the application's message loop terminates.

See Also