Packageorg.apache.flex.html.beads.layouts
Classpublic class TileLayout
InheritanceTileLayout Inheritance Object
Implements IBeadLayout

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The TileLayout class bead sizes and positions the elements it manages into rows and columns. The size of each element is determined either by setting TileLayout's columnWidth and rowHeight properties, or having the tile size determined by factoring the numColumns into the area assigned for the layout.



Public Properties
 PropertyDefined By
  columnWidth : Number
The width of each column, in pixels.
TileLayout
  numColumns : Number
The number of tiles to fit horizontally into the layout.
TileLayout
  rowHeight : Number
The height of each row, in pixels.
TileLayout
  strand : IStrand
[write-only] The host component for this bead.
TileLayout
Public Methods
 MethodDefined By
  
constructor.
TileLayout
  
layout():Boolean
TileLayout
Property Detail
columnWidthproperty
columnWidth:Number

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The width of each column, in pixels. If left unspecified, the columnWidth is determined by dividing the numColumns into the strand's bounding box width.


Implementation
    public function get columnWidth():Number
    public function set columnWidth(value:Number):void
numColumnsproperty 
numColumns:Number

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The number of tiles to fit horizontally into the layout.


Implementation
    public function get numColumns():Number
    public function set numColumns(value:Number):void
rowHeightproperty 
rowHeight:Number

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The height of each row, in pixels. If left unspecified, the rowHeight is determine by dividing the possible number of rows into the strand's bounding box height.


Implementation
    public function get rowHeight():Number
    public function set rowHeight(value:Number):void
strandproperty 
strand:IStrand  [write-only]

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The host component for this bead.


Implementation
    public function set strand(value:IStrand):void
Constructor Detail
TileLayout()Constructor
public function TileLayout()

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

constructor.

Method Detail
layout()method
public function layout():Boolean

Returns
Boolean