PAGE container
Defines the content of a folder page, in a grid-based layout.
Syntax
PAGE [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.
Form attributes
Style attributes
Common: backgroundColor
, border
, fontFamily
, fontSize
, fontStyle
, fontWeight
, localAccelerators
, showAcceleratorInToolTip
, textColor
, textDecoration
.
Class-specific: none.
Can hold
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