[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'Forms' (#lcl)

TApplicationFlags

Set type used to store values from the TApplicationFlag enumeration.

Declaration

Source position: forms.pp line 1371

type TApplicationFlags = set of (

  AppWaiting,

  

Application is in an Idle state and waiting for a message.

  AppIdleEndSent,

  

IdleEnd handlers have been notified of message arrival; end the idle state for the application.

  AppNoExceptionMessages,

  

Suppresses exception display for the application; set when an exception is aborted in the application.

  AppActive,

  

The application has focus; prevents recursive application activation.

  AppDestroying,

  

Shutting down; set when the application instance is freed.

  AppDoNotCallAsyncQueue,

  

Skip asynchronous callbacks between handled messages.

  AppInitialized

  

Application has been initialized.

);

Description

TApplicationFlags is the type used for the Flags property in TApplication.

See also

TApplicationFlag

  

Application state flags.

TApplication.Flags

  

Contains state flags for the application.


Version 3.2 Generated 2024-02-25 Home