**************** wx.PyEventBinder **************** Inheritance diagram for `wx.PyEventBinder`: | .. inheritance-diagram:: wx.PyEventBinder | Description =========== Instances of this class are used to bind specific events to event handlers. Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `Bind <#Bind>`_ * `Unbind <#Unbind>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `typeId <#typeId>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(evtType, expectedIDs=0) Constructor. **Parameters:** * `evtType` (PyObject) * `expectedIDs` (int) -------- .. method:: Bind(target, id1, id2, function) Bind this set of event types to target. **Parameters:** * `target` (`wx.EvtHandler `_) * `id1` (int) * `id2` (int) * `function` (PyObject) -------- .. method:: Unbind(target, id1, id2) Remove an event binding. **Parameters:** * `target` (`wx.EvtHandler `_) * `id1` (int) * `id2` (int) -------- Properties ^^^^^^^^^^ .. attribute:: typeId Make it easy to get to the default wxEventType `typeID` for this event binder.