<panelframe>
Description
Describes an entire panel group.
Attributes
x, y, {width, height}, dock, collapsexspecifies the left position of the panel group. Its value can be an integer or a value that is relative to the screen. If the integer value is not on the screen, the panel group appears in the closest screen position possible to make it visible on the screen. Relative values can be "left" or "right"; these values indicate which edge of the panel group to align with which edge of the virtual screen.yspecifies the top position of the panel group. Its value can be an integer or a value that is relative to the screen. If the integer value is not on the screen, the panel group appears in the closest screen position possible to make it visible on the screen. Relative values can be "top" or "bottom"; these values indicate which edge of the panel group to align with which edge of the virtual screen.widthis the width, in pixels, of the panel group. This attribute is optional. If the width is not specified, the built-in default for the panel group is used.heightis the height, in pixels, of the panel group. This attribute is optional. If the height is not specified, the built-in default for the panel group is used.dockis a string value that specifies to which edge of the application frame to dock the panel group. This attribute is ignored on the iOS because panel groups cannot be docked.collapseis a Boolean value:trueindicates that the panel group is collapsed:falseindicates that the panel group is expanded. This attribute is ignored on the iOS because panels are floating.
Contents
This tag must contain one or more panelcontainer tags.
Container
This tag must be contained in a panelset tag.
Example
<panelset> <panelframe rect="196 453 661 987" visible="true" dock="floating"> <!-- panelcontainer tags here --> </panelframe></panelset>