*********** wx.BoxSizer *********** Inheritance diagram for `wx.BoxSizer`: | .. inheritance-diagram:: wx.BoxSizer | Description =========== 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. Derived From ^^^^^^^^^^^^^ * `wx.Sizer `_ * `wx.Object `_ Known Subclasses ^^^^^^^^^^^^^^^^ `wx.StaticBoxSizer `_, `wx.StdDialogButtonSizer `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `GetOrientation <#GetOrientation>`_ * `SetOrientation <#SetOrientation>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `Orientation <#Orientation>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(orient=wx.HORIZONTAL) Constructor for a `wx.BoxSizer`. `orient` may be one of ``wx.VERTICAL`` or ``wx.HORIZONTAL`` for creating either a column sizer or a row sizer. **Parameters:** * `orient` (int) | **Returns:** `wx.BoxSizer `_ -------- .. method:: GetOrientation() Returns the orientation of the box sizer, either ``wx.VERTICAL`` or ``wx.HORIZONTAL``. | **Returns:** `int` -------- .. method:: SetOrientation(orient) Resets the orientation of the sizer. **Parameters:** * `orient` (int) -------- Properties ^^^^^^^^^^ .. attribute:: Orientation See `GetOrientation <#GetOrientation>`_ and `SetOrientation <#SetOrientation>`_