The window tag describes a window (TForm) in an application. The window tag contains the elements that are in the window.
progressbar radiogroup scale statictext
This attribute specifies the version of plug used. This option is required.
Ignored in this version of PLUG for Delphi
This attribute is used for indicating the layout of the window. The possible values are horizontal, vertical and border. The default value is horizontal. See layout for more information about the layout issues.
This attribute is used for indicating the alignment of elements in the window when the window has the vertical or horizontal layout. The possible values are begin, middle and end. The default value is begin. See layout for more information about the layout issues.
This attribute determines whether this window is the mainwindow. Only one mainwindow is allowed in an application. The mainwindow is the first window to display. The values that are allowed for this attribute are true and false. The default value is false.
The onhide attribute of window determines whether there is an onhide event for this window. An onhide event occurs when the window disappears from the screen. When the onhide attribute has the value true, an entry, for handling the onhide event, will be created in the code-frame for this window.
The onshow attribute of window determines whether there is an onshow event for this window. An onshow event occurs when the window appears on the screen. When the onshow attribute has the value true, an entry, for handling the onshow event, will be created in the code-frame for this window.
The resizable attribute of the window tag indicates whether the window is resizable. It can take the boolean values true and false. The default value is true.
Specifies text to be displayed in the title-bar of the window when any.
Specifies whether the window is visible or not. The allowed values for this attribute are true and false. The default value is false.