FMX.Forms.TCommonCustomForm.WindowState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property WindowState: TWindowState read FWindowState write SetWindowState default TWindowState.wsNormal;

C++

__property System::Uitypes::TWindowState WindowState = {read=FWindowState, write=SetWindowState, default=0};

Properties

Type Visibility Source Unit Parent
property public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

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