GROUP container
Defines a layout area to group other layout elements together, in a grid-based layout.
Syntax
GROUP [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
In a LAYOUT tree definition, use a GROUP container
                to hold other containers such as a VBOX with children, or a
                GRID container.
For more details about this item type, see GROUP item type.
Example
GROUP ( TEXT = "Customer" )
  VBOX
    GRID
    {
     ...
    }
    END
    TABLE
    {
     ...
    }
    END
  END
END