Package | com.yahoo.astra.layout.modes |
Class | public class FlowLayout |
Inheritance | FlowLayout BaseLayoutMode flash.events.EventDispatcher |
Implements | IAdvancedLayoutMode |
var flow:FlowLayout = new FlowLayout(); flow.direction = "horizontal"; flow.horizontalGap = 1; flow.verticalGap = 4; flow.verticalAlign = VerticalAlignment.BOTTOM; var container:LayoutContainer = new LayoutContainer(); container.layoutMode = flow; this.addChild( container );
Advanced Client Options:
Optional client configuration parameters allow a developer to specify
behaviors for individual children of the target container. To set these
advanced options, one must call addClient()
on the FlowLayout
instance and pass the child to configure along with an object specifying
the configuration parameters. The following client parameters are available to
the FlowLayout algorithm:
includeInLayout
: Booleanfalse
, the target will not be included in layout calculations. The default value is true
.See also
Property | Defined by | ||
---|---|---|---|
direction : String
The direction in which children of the target are laid out.
| FlowLayout | ||
horizontalAlign : String
The horizontal alignment of children displayed in the target.
| FlowLayout | ||
horizontalGap : Number
The number of pixels appearing between the target's children
horizontally.
| FlowLayout | ||
paddingBottom : Number
The number of pixels displayed at the bottom of the target's children.
| BaseLayoutMode | ||
paddingLeft : Number
The number of pixels displayed at the left of the target's children.
| BaseLayoutMode | ||
paddingRight : Number
The number of pixels displayed at the right of the target's children.
| BaseLayoutMode | ||
paddingTop : Number
The number of pixels displayed at the top of the target's children.
| BaseLayoutMode | ||
verticalAlign : String
The vertical alignment of children displayed in the target.
| FlowLayout | ||
verticalGap : Number
The number of pixels appearing between the target's children
vertically.
| FlowLayout |
Method | Defined by | ||
---|---|---|---|
Constructor.
| FlowLayout | ||
addClient(target:DisplayObject, configuration:Object = null):void
Registers a specific display object with the layout algorithm.
| BaseLayoutMode | ||
hasClient(target:DisplayObject):Boolean
Returns true if a display object has been registered as a client.
| BaseLayoutMode | ||
layoutObjects(displayObjects:Array, bounds:Rectangle):Rectangle
The DisplayObjects in the input parameter will be positioned and sized
based on a specified rectangle.
| FlowLayout | ||
removeClient(target:DisplayObject):void
Unregisters a specific display object from the layout algorithm.
| BaseLayoutMode |
direction | property |
direction:String
[read-write]
The direction in which children of the target are laid out. Once
the edge of the container is reached, the children will begin
appearing on the next row or column. Valid direction values include
"vertical"
or "horizontal"
.
public function get direction():String
public function set direction(value:String):void
horizontalAlign | property |
horizontalAlign:String
[read-write]The horizontal alignment of children displayed in the target.
Implementation public function get horizontalAlign():String
public function set horizontalAlign(value:String):void
See also
horizontalGap | property |
horizontalGap:Number
[read-write]The number of pixels appearing between the target's children horizontally.
Implementation public function get horizontalGap():Number
public function set horizontalGap(value:Number):void
verticalAlign | property |
verticalAlign:String
[read-write]The vertical alignment of children displayed in the target.
Implementation public function get verticalAlign():String
public function set verticalAlign(value:String):void
See also
verticalGap | property |
verticalGap:Number
[read-write]The number of pixels appearing between the target's children vertically.
Implementation public function get verticalGap():Number
public function set verticalGap(value:Number):void
FlowLayout | () | constructor |
public function FlowLayout()
Constructor.
layoutObjects | () | method |
public override function layoutObjects(displayObjects:Array, bounds:Rectangle):Rectangle
The DisplayObjects in the input parameter will be positioned and sized based on a specified rectangle. There is no requirement that the display objects remain entirely within the rectangle.
Returns the actual rectangular region in which the laid out children will appear. This may be larger or smaller than the suggested rectangle. This returned value is expected to be used by container components to determine if scrollbars or other navigation controls are needed.
ParametersdisplayObjects:Array — An Array of DisplayObjects to be laid out.
|
|
bounds:Rectangle — The rectangular region in which the display objects should be placed.
|
Rectangle — The actual region in which the display objects are contained.
|