A Layout defines the content of a window throught its contained items. A window may have several layouts, of which only one is visible at a time. All layouts should have the same size, as graphical problems might occur otherwise.
id
The ID by which this layout is referred to. Must be set and has to be unique.
width
The initial width of the layout. Required
height
The initial height of the layout. Required
minwidth
Minimum width of the layout. This value is only used when resizing the layout. If this value is set to "-1", the initial width (as specified by the width attribute) will be used as minimum width.
Default value: -1
minheight
Minimum height of the layout. This value is only used when resizing the layout. If this value is set to "-1", the initial height (as specified by the height attribute) will be used as minimum height.
Default value: -1
maxwidth
Maximum width of the layout. This value is only used when resizing the layout. If this value is set to "-1", the initial width (as specified by the width attribute) will be used as maximum width.
Default value: -1
maxheight
Maximum height of the layout. This value is only used when resizing the layout. If this value is set to "-1", the initial height (as specified by the height attribute) will be used as maximum height.
Default value: -1
See also:
Window,
How to create resizable windows