Packagegs.display.accordion
Classpublic class BaseAccordionPane
InheritanceBaseAccordionPane Inheritance flash.display.MovieClip

The AccordionPane class wraps a pane section for the accordion. Yuou pass instances of this to the accordion.

Examples are in the guttershark repository.



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined by
  
BaseAccordionPane(labelBar:BaseAccordionLabelBar, content:MovieClip)
Constructor for AccordionPane instances.
BaseAccordionPane
Property detail
contentproperty
public var content:MovieClip

Pane content clip.

enabledproperty 
enabled:Boolean  [read-write]

Toggles the enabled state on the labelBar.

Implementation
    public function get enabled():Boolean
    public function set enabled(value:Boolean):void
heightproperty 
height:Number  [read-only]

Accordion pane height including label bar.

Implementation
    public function get height():Number
labelBarproperty 
public var labelBar:BaseAccordionLabelBar

Pane label bar.

labelBarHeightproperty 
labelBarHeight:Number  [read-only]

The label bar height.

Implementation
    public function get labelBarHeight():Number
labelBarWidthproperty 
labelBarWidth:Number  [read-only]

The label bar width.

Implementation
    public function get labelBarWidth():Number
widthproperty 
width:Number  [read-only]

Accordion pane width.

Implementation
    public function get width():Number
Constructor detail
BaseAccordionPane()constructor
public function BaseAccordionPane(labelBar:BaseAccordionLabelBar, content:MovieClip)

Constructor for AccordionPane instances.

Parameters
labelBar:BaseAccordionLabelBar — The label bar to associate with this pane.
 
content:MovieClip — The content clip that belongs to this pane.