VBOX container

Packs child layout elements vertically.

Syntax

VBOX [identifier]  [ ( attribute [,...] ) ]
  layout-container
  [...] 
END
  1. identifier defines the name of the element.
  2. attribute is an attribute for the element.
  3. layout-container is another child container.

Form attributes

COMMENT, FONTPITCH, HIDDEN, STYLE, SPLITTER, TAG.

Style attributes

Common: backgroundColor, border, fontFamily, fontSize, fontStyle, fontWeight, localAccelerators, showAcceleratorInToolTip, textColor, textDecoration.

Class-specific: none.

Can hold

VBOX, HBOX, GROUP, FOLDER, GRID, SCROLLGRID, TABLE, TREE.

Usage

A VBOX container packs other form items together, in the vertical direction.

For more details about this item type, see VBOX item type.

Example

VBOX
  GROUP ( TEXT = "Customer" )
   ...
  END
  TABLE
   ...
  END
END