FMX.Forms.TForm.WindowState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property WindowState default TWindowState.wsNormal;

C++

__property WindowState = {default=0};

Properties

Type Visibility Source Unit Parent
property published
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TForm

Description

Represents how the form appears on the screen.

FMX.Forms.TForm.WindowState inherits from FMX.Forms.TCommonCustomForm.WindowState. All content below this line refers to FMX.Forms.TCommonCustomForm.WindowState.

Represents how the form appears on the screen.

Set WindowState to minimize, maximize, or restore the form window. Read WindowState to determine whether the form is minimized, maximized, or in a normal state.

Possible values for the WindowState property are:

  • wsMaximized
  • wsMinimized
  • wsNormal

See Also