********* wx.GBSpan ********* Inheritance diagram for `wx.GBSpan`: | .. inheritance-diagram:: wx.GBSpan | Description =========== This class is used to hold the row and column spanning attributes of items in a `wx.GridBagSizer `_. Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `Get <#Get>`_ * `GetColspan <#GetColspan>`_ * `GetRowspan <#GetRowspan>`_ * `Set <#Set>`_ * `SetColspan <#SetColspan>`_ * `SetRowspan <#SetRowspan>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `colspan <#colspan>`_ * `rowspan <#rowspan>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(rowspan=1, colspan=1) Construct a new `wx.GBSpan`, optionally setting the rowspan and colspan. The default is (1, 1), meaning that the item occupies one cell in each direction. **Parameters:** * `rowspan` (int) * `colspan` (int) | **Returns:** `wx.GBSpan `_ -------- .. method:: Get() | **Returns:** `PyObject` -------- .. method:: GetColspan() Get the current `colspan` value. | **Returns:** `int` -------- .. method:: GetRowspan() Get the current `rowspan` value. | **Returns:** `int` -------- .. method:: Set(rowspan=1, colspan=1) Sets the `rowspan` and `colspan` attributes for `wx.GBSpan`. **Parameters:** * `rowspan` (int) * `colspan` (int) -------- .. method:: SetColspan(colspan) Set a new `colspan` value. **Parameters:** * `colspan` (int) -------- .. method:: SetRowspan(rowspan) Set a new `rowspan` value. **Parameters:** * `rowspan` (int) -------- Properties ^^^^^^^^^^ .. attribute:: colspan See `GetColSpan <#GetColSpan>`_ .. attribute:: rowspan See `GetRowSpan <#GetRowSpan>`_