<panelcontainer>
Description
Describes an entire panel group.
Attributes
expanded, title,{ height,} activepanel, visible, maximize, maxRestorePanel, maxRestoreIndex, maxRect, tabsinheaderexpandedis a Boolean value:trueif the panel is expanded;falseotherwise.titleis a string that specifies the title of the panel.heightis an integer that specifies the height of the panel in pixels. This attribute is optional. Ifheightis not specified, the build-in default for each panel is used.NOTE
Width is inherited from the parent.
activepanelis a number that is the ID of the front panel.visibleis a Boolean value:trueif the panel is visible;falseotherwise.maximizeis a Boolean value:trueif the panel should be maximized when it appears initially;falseotherwise.maxRestorePanelis a number that is the ID of the panel to restore to.maxRectis 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.tabsinheaderis a Boolean value:trueindicates that tabs should be positioned in the header instead of below the header bar;falseotherwise.
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>