This event class is used for the events generated by wx.SpinCtrlDouble.
Handlers bound for the following event types will receive a wx.SpinDoubleEvent parameter.
ENTER
is pressed, or the control loses focus and the new value is different from the last. See wx.SpinDoubleEvent.See also
__init__ |
The constructor. |
GetValue |
Returns the value associated with this spin control event. |
SetValue |
Set the value associated with the event. |
wx.
SpinDoubleEvent
(NotifyEvent)¶Possible constructors:
SpinDoubleEvent(commandType=wxEVT_NULL, winid=0, value=0)
SpinDoubleEvent(event)
This event class is used for the events generated by SpinCtrlDouble.
__init__
(self, *args, **kw)¶__init__ (self, commandType=wxEVT_NULL, winid=0, value=0)
The constructor.
Not normally used by the user code.
Parameters: |
|
---|
__init__ (self, event)
The copy constructor.
Parameters: | event (wx.SpinDoubleEvent) – |
---|
GetValue
(self)¶Returns the value associated with this spin control event.
Return type: | float |
---|
SetValue
(self, value)¶Set the value associated with the event.
(Not normally used by user code.)
Parameters: | value (float) – |
---|