The basic idea behind a box sizer is that windows will most often be laid out in rather simple basic geometry, typically in a row or a column or several hierarchies of either.
For more information, please see overview_sizer_box.
See:
This class is derived, and can use functions, from:
wxWidgets docs: wxBoxSizer
Summary
Functions
Destroys the object
Returns the orientation of the box sizer, either wxVERTICAL or wxHORIZONTAL.
Constructor for a wxBoxSizer.
Types
-type wxBoxSizer() :: wx:wx_object().
Functions
destroy(This :: wxBoxSizer()) -> ok
Destroys the object
getOrientation(This :: wxBoxSizer()) -> integer()
Returns the orientation of the box sizer, either wxVERTICAL or wxHORIZONTAL.
new(Orient :: integer()) -> wxBoxSizer()
Constructor for a wxBoxSizer.
orient may be either of wxVERTICAL or wxHORIZONTAL for creating either a column sizer
or a row sizer.