The layout used by the HDividedBox component.

Events:

openfl.events.Event.CHANGE
Available since

1.0.0

.

See also:

Constructor

new()

Creates a new HDividedBoxLayout object.

Available since

1.0.0

.

Variables

@:flash.propertycustomItemWidths:Array<Null<Float>>

Set automatically by HDividedBox. Do not set this manually.

Available since

1.0.0

.

@:flash.propertyfallbackFluidIndex:Int

Set automatically by HDividedBox. Do not set this manually.

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

.

@:flash.propertyverticalAlign:VerticalAlign

How the content is positioned vertically (along the y-axis) within the container.

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

layout.verticalAlign = BOTTOM;
Available since

1.0.0

.

See also:

Methods

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

setPadding(value:Float):Void

Sets all four padding properties to the same value.

Available since

1.0.0

.

See also: