See external documentation: wxspinctrl.
See external documentation: wxSpinCtrl.
This class is derived (and can use functions) from:
wxControl
wxWindow
wxEvtHandler
wxSpinCtrl():
An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes.
new() -> wxSpinCtrl()
See external documentation.
new(Parent) -> wxSpinCtrl()
Types:
Parent = wxWindow() (see module wxWindow)
Equivalent to new(Parent, []).
new(Parent, Option::[Option]) -> wxSpinCtrl()
Types:
Parent = wxWindow() (see module wxWindow)
Option = {id, integer()} | {value, chardata() (see module unicode)} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} | {min, integer()} | {max, integer()} | {initial, integer()}
See external documentation.
create(This, Parent) -> boolean()
Types:
This = wxSpinCtrl()
Parent = wxWindow() (see module wxWindow)
Equivalent to create(This, Parent, []).
create(This, Parent, Option::[Option]) -> boolean()
Types:
This = wxSpinCtrl()
Parent = wxWindow() (see module wxWindow)
Option = {id, integer()} | {value, chardata() (see module unicode)} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} | {min, integer()} | {max, integer()} | {initial, integer()}
See external documentation.
setValue(This, Value) -> ok
Types:
This = wxSpinCtrl()
Value = integer()
See external documentation.
Also:
setValue(This, Text) -> ok when
This::wxSpinCtrl(), Text::unicode:chardata().
getValue(This) -> integer()
Types:
This = wxSpinCtrl()
See external documentation.
setRange(This, MinVal, MaxVal) -> ok
Types:
This = wxSpinCtrl()
MinVal = integer()
MaxVal = integer()
See external documentation.
setSelection(This, From, To) -> ok
Types:
This = wxSpinCtrl()
From = integer()
To = integer()
See external documentation.
getMin(This) -> integer()
Types:
This = wxSpinCtrl()
See external documentation.
getMax(This) -> integer()
Types:
This = wxSpinCtrl()
See external documentation.
destroy(This::wxSpinCtrl()) -> ok
Destroys this object, do not use object again
<>