Class reference
BoxContainer
Inherits Container
A container that arranges its child controls horizontally or vertically.
Description
A container that arranges its child controls horizontally or vertically, rearranging them automatically when their minimum size changes.
Properties
int alignment = 0
The alignment of the container's children (must be one of ALIGNMENT_BEGIN, ALIGNMENT_CENTER, or ALIGNMENT_END).
bool vertical = false
If true, the BoxContainer will arrange its children vertically, rather than horizontally. Can't be changed when using HBoxContainer and VBoxContainer.
Methods
Constants
ALIGNMENT_BEGIN = 0
The child controls will be arranged at the beginning of the container, i.e. top if orientation is vertical, left if orientation is horizontal (right for RTL layout).
ALIGNMENT_CENTER = 1
The child controls will be centered in the container.
ALIGNMENT_END = 2
The child controls will be arranged at the end of the container, i.e. bottom if orientation is vertical, right if orientation is horizontal (left for RTL layout).
Theme properties
int separation = 4
The space between the BoxContainer's elements, in pixels.