Packageflexlib.containers
Classpublic class DockableToolBar
InheritanceDockableToolBar Inheritance FlowContainer Inheritance mx.core.Container

The DockableToolBar container is used along with the Docker container to add individual ToolBars within a Docker context.

MXML Syntaxexpanded Hide MXML Syntax

The <flexlib:DockableToolBar> tag inherits all the tag attributes of its superclass, and adds the following tag attributes:

  <flexlib:DockableToolBar
    Properties
    draggable="true"
    initialPosition="top"
     Events
    dock="No default"
    float="No default"
  />
  

See also

flexlib.containers.Docker


Public Properties
 PropertyDefined by
  draggable : Boolean = true
Flag which indicates whether this ToolBar can be dragged by user.
DockableToolBar
  initialPosition : String = "top"
The initial location of the ToolBar.
DockableToolBar
  isDocked : Boolean
[read-only] Indicates whether the ToolBar is currently docked.
DockableToolBar
Public Methods
 MethodDefined by
  
Constructor.
DockableToolBar
Events
 EventSummaryDefined by
   Dispatched when the ToolBar is docked.DockableToolBar
   Dispatched when the ToolBar is poped up into a floating window.DockableToolBar
Styles
 StyleDescriptionDefined by
  
dragStripIcon
Type: String   CSS Inheritance: no
Image to be used for the dragStrip icon. If not specified, the default image is used.
DockableToolBar
 Inherited Type: Number   Format: Length   CSS Inheritance: no
Number of pixels between children in the horizontal direction.
FlowContainer
 Inherited Type: Number   Format: Length   CSS Inheritance: no
Number of pixels between children in the vertical direction.
FlowContainer
Property detail
draggableproperty
public var draggable:Boolean = true

Flag which indicates whether this ToolBar can be dragged by user.

initialPositionproperty 
public var initialPosition:String = "top"

The initial location of the ToolBar. This can be either "top" or "bottom".

isDockedproperty 
isDocked:Boolean  [read-only]

Indicates whether the ToolBar is currently docked.

Implementation
    public function get isDocked():Boolean
Constructor detail
DockableToolBar()constructor
public function DockableToolBar()

Constructor.

Event detail
dockevent 
Event object type: flash.events.Event

Dispatched when the ToolBar is docked.

floatevent  
Event object type: flash.events.Event

Dispatched when the ToolBar is poped up into a floating window.