phoenix_title wx.SpinDoubleEvent

This event class is used for the events generated by wx.SpinCtrlDouble.

^^

events Events Emitted by this Class

Handlers bound for the following event types will receive a wx.SpinDoubleEvent parameter.

  • EVT_SPINCTRLDOUBLE: Generated whenever the numeric value of the spin control is changed, that is, when the up/down spin button is clicked or when the control loses focus and the new value is different from the last one. See wx.SpinDoubleEvent. ^^

class_hierarchy Class Hierarchy

Inheritance diagram for class SpinDoubleEvent:

method_summary Methods Summary

__init__

The constructor.

GetValue

Returns the value associated with this spin control event.

SetValue

Set the value associated with the event.


property_summary Properties Summary

Value

See GetValue and SetValue


api Class API

class wx.SpinDoubleEvent(NotifyEvent)

Possible constructors:

SpinDoubleEvent(commandType: EventType=wxEVT_NULL, winid: int=0, value:
                float=0) -> None

SpinDoubleEvent(event : SpinDoubleEvent) -> None

This event class is used for the events generated by SpinCtrlDouble.


Methods

__init__(self, *args, **kw)

overload Overloaded Implementations:



__init__ (self, commandType: EventType=wxEVT_NULL, winid: int=0, value: float=0)

The constructor.

Not normally used by the user code.

Parameters:
  • commandType (wx.EventType) –

  • winid (int) –

  • value (float) –

Return type:

None



__init__ (self, event : SpinDoubleEvent)

The copy constructor.

Parameters:

event (wx.SpinDoubleEvent) –

Return type:

None





GetValue(self)

Returns the value associated with this spin control event.

Return type:

float



SetValue(self, value : float)

Set the value associated with the event.

(Not normally used by user code.)

Parameters:

value (float) –

Return type:

None


Properties

Value

See GetValue and SetValue