RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Forms.TWindowState Enumeration

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

Pascal
TWindowState = (
  wsNormal,
  wsMinimized,
  wsMaximized
);
C++
enum TWindowState {
  wsNormal,
  wsMinimized,
  wsMaximized
};

Forms

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.  

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!