GROUP item definition
Defines attributes for a group-box layout tag.
Syntax
GROUP layout-tag: [ item-name , ] [ attribute-list ] ;
- layout-tag is an identifier that defines the name of the layout tag.
- item-name identifies the form item, it is optional but recommended.
- 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, 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;
...