| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
TFormStateType - enumerated type to describe the state of a form; whether it is being created or destroyed, its visibility, whether Modal etc
Source position: forms.pp line 367
type TFormStateType = ( |
||
fsCreating, |
|
|
fsVisible, |
|
|
fsShowing, |
|
|
fsModal, |
|
|
fsCreatedMDIChild, |
|
|
fsBorderStyleChanged, |
|
|
fsFormStyleChanged, |
|
|
fsFirstShow, |
|
|
fsDisableAutoSize |
|
|
); |
The valid states are:
fsCreating, // initializing (form streaming)
fsVisible, // form should be shown
fsShowing,
fsModal, // form is modal
fsCreatedMDIChild,
fsBorderStyleChanged,
fsFormStyleChanged,
fsFirstShow, // form is shown for the first time
fsDisableAutoSize
| lazarus-ccr.sourceforge.net |