HBOX container

Packs child layout elements horizontally.

Syntax

HBOX [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.

Attributes

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

Can hold

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

Usage

An HBOX container packs other form items together, in the horizontal direction.

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

Example

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