FMX.Forms.TFmxFormState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFmxFormState = (Recreating, Modal, Released, InDesigner, WasNotShown, Showing, UpdateBorder, Activation, Closing,
Engaged);

C++

enum class DECLSPEC_DENUM TFmxFormState : unsigned int { Recreating, Modal, Released, InDesigner, WasNotShown, Showing, UpdateBorder, Activation, Closing, Engaged, fsRecreating _DEPRECATED_ATTRIBUTE3("Use TFmxFormState.Recreating")  = 0, fsModal _DEPRECATED_ATTRIBUTE3("Use TFmxFormState.Modal")  = 1, fsReleased _DEPRECATED_ATTRIBUTE3("Use TFmxFormState.Released")  = 2, fsInDesigner _DEPRECATED_ATTRIBUTE3("Use TFmxFormState.InDesigner")  = 3, fsWasNotShown _DEPRECATED_ATTRIBUTE3("Use TFmxFormState.WasNotShown")  = 4, fsShowing _DEPRECATED_ATTRIBUTE3("Use TFmxFormState.Showing")  = 5, fsUpdateBorder _DEPRECATED_ATTRIBUTE3("Use TFmxFormState.UpdateBorder")  = 6, fsActivation _DEPRECATED_ATTRIBUTE3("Use TFmxFormState.Activation")  = 7 };

Properties

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

Description

TFmxFormState describes the possible states of a FireMonkey form.

The following table lists the values that can be included in a FireMonkey form's state:



Value Meaning

fsCreating

The form's constructor is currently executing.

Modal

The form was created as a modal window.



See Also