| Package | gs.display.accordion |
| Class | public class BaseAccordionPane |
| Inheritance | BaseAccordionPane flash.display.MovieClip |
Examples are in the guttershark repository.
| Property | Defined by | ||
|---|---|---|---|
| content : MovieClip
Pane content clip.
| BaseAccordionPane | ||
| enabled : Boolean
Toggles the enabled state on the labelBar.
| BaseAccordionPane | ||
| height : Number [read-only]
Accordion pane height including label bar.
| BaseAccordionPane | ||
| labelBar : BaseAccordionLabelBar
Pane label bar.
| BaseAccordionPane | ||
| labelBarHeight : Number [read-only]
The label bar height.
| BaseAccordionPane | ||
| labelBarWidth : Number [read-only]
The label bar width.
| BaseAccordionPane | ||
| width : Number [read-only]
Accordion pane width.
| BaseAccordionPane | ||
| Method | Defined by | ||
|---|---|---|---|
|
BaseAccordionPane(labelBar:BaseAccordionLabelBar, content:MovieClip)
Constructor for AccordionPane instances.
| BaseAccordionPane | ||
| content | property |
public var content:MovieClipPane content clip.
| enabled | property |
enabled:Boolean [read-write]Toggles the enabled state on the labelBar.
Implementation public function get enabled():Boolean
public function set enabled(value:Boolean):void
| height | property |
height:Number [read-only]Accordion pane height including label bar.
Implementation public function get height():Number
| labelBar | property |
public var labelBar:BaseAccordionLabelBarPane label bar.
| labelBarHeight | property |
labelBarHeight:Number [read-only]The label bar height.
Implementation public function get labelBarHeight():Number
| labelBarWidth | property |
labelBarWidth:Number [read-only]The label bar width.
Implementation public function get labelBarWidth():Number
| width | property |
width:Number [read-only]Accordion pane width.
Implementation public function get width():Number
| BaseAccordionPane | () | constructor |
public function BaseAccordionPane(labelBar:BaseAccordionLabelBar, content:MovieClip)Constructor for AccordionPane instances.
ParameterslabelBar:BaseAccordionLabelBar — The label bar to associate with this pane.
|
|
content:MovieClip — The content clip that belongs to this pane.
|