GROUP item definition

Defines a group-box layout tag, in a grid-based layout.

Syntax

GROUP layout-tag: item-name [  , attribute-list ] ;
  1. layout-tag is an identifier that defines the name of the layout tag.
  2. item-name identifies the form item.
  3. attribute-list defines the aspect and behavior of the form item.

Form attributes

COMMENT, FONTPITCH, GRIDCHILDRENINPARENT, HIDDEN, STYLE, TAG, TEXT.

Style attributes

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

Class-specific: collapsible, collapserPosition, initiallyCollapsed.

Usage

Define the rendering and behavior of a group layout tag, with a GROUP element in the ATTRIBUTES section.

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

Example

LAYOUT
GRID
{
<GROUP g1             >
 Num: [f001         ]
 ...

}
END
END

ATTRIBUTES
GROUP g1: group1,
   TEXT="Description",
   GRIDCHILDRENINPARENT;
...