************************** wx.grid.GridCellBoolEditor ************************** Inheritance diagram for `wx.grid.GridCellBoolEditor`: | .. inheritance-diagram:: wx.grid.GridCellBoolEditor | Description =========== The editor for boolean data. .. seealso:: `wx.grid.GridCellEditor `_, `wx.grid.GridCellFloatEditor `_, `wx.grid.GridCellNumberEditor `_, `wx.GridCellTextEditor `_, `wx.grid.GridCellChoiceEditor `_ Derived From ^^^^^^^^^^^^^ * `wx.grid.GridCellEditor `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `IsTrueValue <#IsTrueValue>`_ * `UseStringValues <#UseStringValues>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__() `No docstrings available for this method.` -------- .. method:: IsTrueValue(value) Returns ``True`` if the given `value` is equal to the string representation of the truth value we currently use. **Parameters:** * `value` (string) | **Returns:** `bool` .. seealso:: `UseStringValues <#UseStringValues>`_ -------- .. method:: UseStringValues(valueTrue="1", valueFalse="") This method allows to customize the values returned by `GetValue() `_ method for the cell using this editor. The default values of the arguments are used, i.e. ``"1"`` is returned if the cell is checked and an empty string otherwise, using this method allows to change this. **Parameters:** * `valueTrue` (string) * `valueFalse` (string)