Positions items from top to bottom in a single column, and all items are resized to have the same width and height.

Events:

openfl.events.Event.CHANGE
Available since

1.0.0

.

See also:

Constructor

new()

Creates a new VerticalDistributedLayout object.

Available since

1.0.0

.

Variables

@: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.

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

layout.horizontalAlign = RIGHT;
Available since

1.0.0

.

See also:

@:flash.propertymaxItemHeight:Float

The maximum height of an item in the layout.

In the following example, the layout's maximum item height is set to 20 pixels:

layout.maxItemHeight = 20.0;
Available since

1.0.0

.

@:flash.propertyminItemHeight:Float

The minimum height of an item in the layout.

In the following example, the layout's minimum item height is set to 20 pixels:

layout.minItemHeight = 20.0;
Available since

1.0.0

.

@: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

.

Methods

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