FMX.Forms.TApplicationState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TApplicationState = (None, Running, Terminating, Terminated);

C++

enum class DECLSPEC_DENUM TApplicationState : unsigned int { None, Running, Terminating, Terminated };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms FMX.Forms

Description

Represents an enumeration of the application states.

The following table lists the values of TApplicationState:

Name Description
None No state.
Running The application is running.
Terminating The application is in a terminating state.
Terminated The application has terminated.

See Also