wx.dataview.DataViewSpinRenderer¶
This is a specialized renderer for rendering integer values.
It supports modifying the values in-place by using a wx.SpinCtrl. The renderer only support variants of type long.
Class Hierarchy¶
Methods Summary¶
Constructor. |
Class API¶
- class wx.dataview.DataViewSpinRenderer(DataViewCustomRenderer)¶
Possible constructors:
DataViewSpinRenderer(min, max, mode=DATAVIEW_CELL_EDITABLE, align=DVR_DEFAULT_ALIGNMENT) -> None
This is a specialized renderer for rendering integer values.
Methods¶
- __init__(self, min, max, mode=DATAVIEW_CELL_EDITABLE, align=DVR_DEFAULT_ALIGNMENT)¶
Constructor.
min and max indicate the minimum and maximum values for the wx.SpinCtrl.
- Parameters:
min (int)
max (int)
mode (DataViewCellMode)
align (int)
- Return type:
None