PAGE container

Defines the content of a folder page.

Syntax

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

Form attributes

ACTION, COMMENT, HIDDEN, IMAGE, STYLE, TAG, TEXT.

Style attributes

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

Class-specific: none.

Can hold

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

Usage

In a LAYOUT tree definition, use a PAGE container to define a folder page that holds other containers such as a VBOX with children, or a GRID container.

A PAGE container always belongs to a parent FOLDER container.

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

Example

FOLDER
  PAGE p1 ( TEXT="Global info" )
    GRID
    {
     ...
    }
    END
  END
  PAGE p2 ( IMAGE="list" )
    TABLE
    {
     ...
    }
    END
  END
END