This event class is used for the events generated by wx.SpinButton and wx.SpinCtrl.
Handlers bound for the following event types will receive a wx.SpinEvent parameter.
Note that if you handle both SPIN
and wx.UP
or wx.DOWN
events, you will be notified about each of them twice: first the UP/DOWN event will be received and then, if it wasn’t vetoed, the SPIN
event will be sent.
See also
__init__ |
The constructor is not normally used by the user code. |
GetPosition |
Retrieve the current spin button or control value. |
SetPosition |
Set the value associated with the event. |
wx.
SpinEvent
(NotifyEvent)¶Possible constructors:
SpinEvent(commandType=wxEVT_NULL, id=0)
This event class is used for the events generated by SpinButton and SpinCtrl.
__init__
(self, commandType=wxEVT_NULL, id=0)¶The constructor is not normally used by the user code.
Parameters: |
|
---|
GetPosition
(self)¶Retrieve the current spin button or control value.
Return type: | int |
---|
SetPosition
(self, pos)¶Set the value associated with the event.
Parameters: | pos (int) – |
---|
Position
¶See GetPosition
and SetPosition