PAGE container

Defines the content of a folder page, in a grid-based layout.

Syntax

PAGE [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

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

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