class controls.Column(Widget)

A Column is a container widget that arranges its contents in a vertical column.

Note: The layout is only performed when the widget is initially created; it is not updated if you add or remove widgets later or change their sizes.

Constructor

Column(items, align = 'c', spacing = 10, height = None, expand = None)
Initializes with the items as subwidgets and arranges them vertically with spacing pixels between. Horizontal alignment is controlled by align, which is one of 'l', 'c' or 'r' for left, centre or right. If height and expand are specified, the Column widget is made the specified height and the widget referenced by expand is has its height adjusted to fill the remaining space. Otherwise, the size of the Column widget is set according to its contents.
---