A simple list layout that positions items from left to right, in a single row, where every item fills the entire height of the container.

Available since

1.0.0

.

Constructor

new()

Creates a new HorizontalListLayout object.

Available since

1.0.0

.

Variables

@:flash.propertyread onlyelasticBottom:Bool

@:flash.propertyread onlyelasticLeft:Bool

@:flash.propertyread onlyelasticRight:Bool

@:flash.propertyread onlyelasticTop:Bool

@:flash.propertygap:Float

The space, in pixels, between each two adjacent items in the layout.

In the following example, the layout's gap is set to 20 pixels:

layout.gap = 20.0;
Available since

1.0.0

.

@:flash.propertyhorizontalAlign:HorizontalAlign

How the content is positioned horizontally (along the x-axis) within the container.

Note: The HorizontalAlign.JUSTIFY constant is not supported by this layout.

The following example aligns the container's content to the right:

layout.horizontalAlign = RIGHT;
Available since

1.0.0

.

See also:

@:flash.propertypaddingBottom:Float

The space, in pixels, between the parent container's bottom edge and its content.

In the following example, the layout's bottom padding is set to 20 pixels:

layout.paddingBottom = 20.0;
Available since

1.0.0

.

@:flash.propertypaddingLeft:Float

The space, in pixels, between the parent container's left edge and its content.

In the following example, the layout's left padding is set to 20 pixels:

layout.paddingLeft = 20.0;
Available since

1.0.0

.

@:flash.propertypaddingRight:Float

The space, in pixels, between the parent container's right edge and its content.

In the following example, the layout's right padding is set to 20 pixels:

layout.paddingRight = 20.0;
Available since

1.0.0

.

@:flash.propertypaddingTop:Float

The space, in pixels, between the parent container's top edge and its content.

In the following example, the layout's top padding is set to 20 pixels:

layout.paddingTop = 20.0;
Available since

1.0.0

.

@:flash.propertyrequestedColumnCount:Null<Float>

The exact number of columns to render, if the width of the container has not been set explicitly. If null, falls back to requestedMinColumnCount and requestedMaxColumnCount.

In the following example, the layout's requested column count is set to 2 complete items:

layout.requestedColumnCount = 2.0;
Available since

1.0.0

.

@:flash.propertyrequestedMaxColumnCount:Null<Float>

The maximum number of columns to render, if the width of the container has not been set explicitly. If null, the maximum number of columns is the total number of items displayed by the layout.

If requestedColumnCount is also set, this property is ignored.

In the following example, the layout's requested maximum column count is set to 5 complete items:

layout.requestedMaxColumnCount = 5.0;
Available since

1.0.0

.

@:flash.propertyrequestedMinColumnCount:Null<Float>

The minimum number of columns to render, if the width of the container has not been set explicitly. If null, this property is ignored.

If requestedColumnCount is also set, this property is ignored.

In the following example, the layout's requested minimum coumn count is set to 2 complete items:

layout.requestedMinColumnCount = 2.0;
Available since

1.0.0

.

@:flash.propertyscrollX:Float

@:flash.propertyscrollY:Float

@:flash.propertyvirtualCache:Array<Dynamic>

Methods

getNearestScrollPositionForIndex(index:Int, itemCount:Int, width:Float, height:Float, ?result:Point):Point

layout(items:Array<DisplayObject>, measurements:Measurements, ?result:LayoutBoundsResult):LayoutBoundsResult