| Form file structure / LAYOUT section | |
Defines the content of a folder page, in a grid-based layout.
PAGE [identifier] [ ( attribute [,...] ) ] layout-container [...] END
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.
FOLDER
  PAGE p1 ( TEXT="Global info" )
    GRID
    {
     ...
    }
    END
  END
  PAGE p2 ( IMAGE="list" )
    TABLE
    {
     ...
    }
    END
  END
END