VBOX container
Packs child layout elements vertically.
Syntax
VBOX [identifier] [ ( attribute [,...] ) ]
layout-container
[...]
END
- identifier defines the name of the element.
- attribute is an attribute for the element.
- layout-container is another child container.
Attributes
Can hold
Usage
The VBOX
container
automatically packs the contained elements vertically from top to
bottom.
Contained elements are packed in the order in which
they appear in the LAYOUT
section of the form file.
No
decoration is added when you use a VBOX
container.
By
combining VBOX
and HBOX
containers,
you can define any alignment you choose.
Example
VBOX
GROUP ( TEXT = "Customer" )
{
...
}
END
TABLE
{
...
}
END
END