| Package | feathers.layout |
| Class | public class HorizontalLayoutData |
| Inheritance | HorizontalLayoutData starling.events.EventDispatcher |
| Implements | ILayoutData |
| Product Version : | Feathers 1.3.0 |
HorizontalLayout instance to
position and size a display object.
See also
| Property | Defined By | ||
|---|---|---|---|
| percentHeight : Number
The height of the layout object, as a percentage of the container's
height. | HorizontalLayoutData | ||
| percentWidth : Number
The width of the layout object, as a percentage of the container's
width. | HorizontalLayoutData | ||
| Method | Defined By | ||
|---|---|---|---|
HorizontalLayoutData(percentWidth:Number, percentHeight:Number)
Constructor. | HorizontalLayoutData | ||
| Event | Summary | Defined By | ||
|---|---|---|---|---|
| HorizontalLayoutData | ||||
| percentHeight | property |
percentHeight:NumberThe height of the layout object, as a percentage of the container's height.
A percentage may be specified in the range from 0
to 100. If the value is set to NaN, this
property is ignored.
Performance tip: If all items in your layout will have 100%
height, it's better to set the verticalAlign property of
the HorizontalLayout to
VerticalAlign.JUSTIFY.
The default value is NaN.
public function get percentHeight():Number public function set percentHeight(value:Number):voidSee also
| percentWidth | property |
percentWidth:NumberThe width of the layout object, as a percentage of the container's width. The container will calculate the sum of all of its children with explicit pixel widths, and then the remaining space will be distributed to children with percent widths.
A percentage may be specified in the range from 0
to 100. If the value is set to NaN, this
property is ignored. It will also be ignored when the
useVirtualLayout property of the
HorizontalLayout is set to false.
The default value is NaN.
public function get percentWidth():Number public function set percentWidth(value:Number):void| HorizontalLayoutData | () | Constructor |
public function HorizontalLayoutData(percentWidth:Number, percentHeight:Number)Constructor.
ParameterspercentWidth:Number (default = NaN) | |
percentHeight:Number (default = NaN) |
| change | Event |
starling.events.Event