class layout.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)
The widgets in items are added as subwidgets and arranged 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 a height is specified, then expand may be a widget or an index into the items, and the specified widget has its height adjusted to fill the remaining space.
Otherwise, the initial size of the Column is calculated from its contents.
---