<panelcontainer>

Description

Describes an entire panel group.

Attributes

expanded, title,{ height,} activepanel, visible, maximize, maxRestorePanel, maxRestoreIndex, maxRect, tabsinheader
  • expanded is a Boolean value: true if the panel is expanded; false otherwise.
  • title is a string that specifies the title of the panel.
  • height is an integer that specifies the height of the panel in pixels. This attribute is optional. If height is not specified, the build-in default for each panel is used.

    NOTE

    Width is inherited from the parent.

  • activepanel is a number that is the ID of the front panel.
  • visible is a Boolean value: true if the panel is visible; false otherwise.
  • maximize is a Boolean value: true if the panel should be maximized when it appears initially; false otherwise.
  • maxRestorePanel is a number that is the ID of the panel to restore to.
  • maxRect is a string that indicates the position and size of the panel when it is maximized. The string is in the form "left top right bottom", specified as integers.
  • tabsinheader is a Boolean value: true indicates that tabs should be positioned in the header instead of below the header bar; false otherwise.

Contents

This tag must contain one or more panel tags.

Container

This tag must be contained in a panelframe tag.

Example

<panelset> <panelframe rect="196 453 661 987" visible="true" dock="floating"> <panelcontainer title="Color" height="250" visible="true" expanded="true" activepanel="20"> <!-- panel tags here ---> </panelcontainer> </panelframe></panelset>