System.UITypes.TWindowState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TWindowState = (wsNormal, wsMinimized, wsMaximized);

C++

enum class DECLSPEC_DENUM TWindowState : unsigned char { wsNormal, wsMinimized, wsMaximized };

Properties

Type Visibility Source Unit Parent
enum public
System.UITypes.pas
System.UITypes.hpp
System.UITypes System.UITypes

Description

TWindowState indicates whether a form is maximized, minimized, or normally sized.

TWindowState describes the state of a form window. The following table lists the possible values:


Value Meaning

wsNormal

The form is in its normal state (that is, neither minimized nor maximized).

wsMinimized

The form is minimized.

wsMaximized

The form is maximized.


See Also