***************** wx.StaticBoxSizer ***************** Inheritance diagram for `wx.StaticBoxSizer`: | .. inheritance-diagram:: wx.StaticBoxSizer | Description =========== `wx.StaticBoxSizer` is a sizer derived from `wx.BoxSizer `_ but adds a static box around the sizer. This static box may be either created independently or the sizer may create it itself as a convenience. In any case, the sizer owns the `wx.StaticBox `_ control and will delete it if it is deleted. .. note:: Note that this static box must be created separately and passed to the sizer constructor. .. seealso:: `wx.Sizer `_, `wx.StaticBox `_, `wx.BoxSizer `_ Derived From ^^^^^^^^^^^^^ * `wx.BoxSizer `_ * `wx.Sizer `_ * `wx.Object `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `GetStaticBox <#GetStaticBox>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `StaticBox <#StaticBox>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(box, orient=wx.HORIZONTAL) Constructor. It takes an associated static box and the orientation `orient` as parameters -- orient can be either of ``wx.VERTICAL`` or ``wx.HORIZONTAL``. **Parameters:** * `box` (`wx.StaticBox `_) * `orient` (int) | **Returns:** `wx.StaticBoxSizer `_ -------- .. method:: GetStaticBox() Returns the static box associated with the sizer. | **Returns:** `wx.StaticBox `_ -------- Properties ^^^^^^^^^^ .. attribute:: StaticBox See `GetStaticBox <#GetStaticBox>`_