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 SyntaxexpandedHide 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
 Event Summary Defined By
  Dispatched when the ToolBar is docked.DockableToolBar
  Dispatched when the ToolBar is poped up into a floating window.DockableToolBar
Styles
 Style Description Defined By
  
dragStripIcon
Type: String CSS Inheritance: no
Image to be used for the dragStrip icon. If not specified, the default image is used.
DockableToolBar
 InheritedType: Number Format: Length CSS Inheritance: no
Number of pixels between children in the horizontal direction.
FlowContainer
 InheritedType: 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
dock Event
Event Object Type: flash.events.Event
Event.type property = flash.events.Event

Dispatched when the ToolBar is docked.

float Event  
Event Object Type: flash.events.Event
Event.type property = flash.events.Event

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