VerticalFlowLayout

constructor(ordered: Boolean)(source)

Constructs an instance of VerticalLayout with a vertical vgap of 5 pixels, horizontal centering and anchored to the top of the display area.

Parameters

ordered

true if the components must be ordered


constructor(vgap: Int, ordered: Boolean)(source)

Constructs a VerticalLayout instance with horizontal centering, anchored to the top with the specified vgap.

Parameters

vgap

An int value indicating the vertical seperation of the components

ordered

true if the components must be ordered


constructor(vgap: Int, alignment: Int, ordered: Boolean)(source)

Constructs a VerticalLayout instance anchored to the top with the specified vgap and horizontal alignment.

Parameters

vgap

An int value indicating the vertical seperation of the components

alignment

An int value which is one of RIGHT, LEFT, CENTER, BOTH for the horizontal alignment.

ordered

true if the components must be ordered


constructor(vgap: Int, alignment: Int, anchor: Int, ordered: Boolean)(source)

Constructs a VerticalLayout instance with the specified vgap, horizontal alignment and anchoring.

Parameters

vgap

An int value indicating the vertical seperation of the components

alignment

An int value which is one of RIGHT, LEFT, CENTER, BOTH for the horizontal alignment.

anchor

An int value which is one of TOP, BOTTOM, CENTERindicating where the components are to appear if the display area exceeds the minimum necessary.

ordered

true if the components must be ordered