<panelframe>

Description

Describes an entire panel group.

Attributes

x, y, {width, height}, dock, collapse
  • x specifies 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.
  • y specifies 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.
  • width is 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.
  • height is 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.
  • dock is 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.
  • collapse is a Boolean value: true indicates that the panel group is collapsed: false indicates 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>