Vcl.Forms.TShowAction
Delphi
TShowAction = (saIgnore, saRestore, saMinimize, saMaximize);
C++
enum DECLSPEC_DENUM TShowAction : unsigned char { saIgnore, saRestore, saMinimize, saMaximize };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.Forms.pas Vcl.Forms.hpp |
Vcl.Forms | Vcl.Forms |
Description
Enumeration of form show actions.
TShowAction is an enumeration of form show actions. TCustomForm uses TShowAction to actually display the form.
| Field | Meaning |
|---|---|
|
saIgnore |
Does not affect the form's show state. |
|
saRestore |
Shows the form in its most recent size and position. Note that the form is not activated. |
|
saMinimize |
Shows the form as a minimized window. |
|
saMaximize |
Activates the form and shows it as a maximized window. |