DESCRIPTION
See external documentation: wxSpinCtrl.
This class is derived (and can use functions) from:
wxControl
wxWindow
wxEvtHandler
DATA TYPES
-
- 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.
-
EXPORTS
new() -> wxSpinCtrl()
-
See external documentation.
new(Parent) -> wxSpinCtrl()
-
Types:
-
Parent = wxWindow() (see module wxWindow)
-
Parent = wxWindow() (see module wxWindow)
-
Equivalent to new(Parent, []).
new(Parent, Options::[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()}
-
Parent = wxWindow() (see module wxWindow)
-
See external documentation.
create(This, Parent) -> boolean()
-
Types:
-
This = wxSpinCtrl()
Parent = wxWindow() (see module wxWindow)
-
This = wxSpinCtrl()
-
Equivalent to create(This, Parent, []).
create(This, Parent, Options::[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()}
-
This = wxSpinCtrl()
-
See external documentation.
setValue(This, Value) -> ok
-
Types:
-
This = wxSpinCtrl()
Value = integer()
-
This = wxSpinCtrl()
-
See external documentation.
Also:
setValue(This, Text) -> 'ok' when
This::wxSpinCtrl(), Text::unicode:chardata().
getValue(This) -> integer()
-
Types:
-
This = wxSpinCtrl()
-
This = wxSpinCtrl()
-
See external documentation.
setRange(This, MinVal, MaxVal) -> ok
-
Types:
-
This = wxSpinCtrl()
MinVal = integer()
MaxVal = integer()
-
This = wxSpinCtrl()
-
See external documentation.
setSelection(This, From, To) -> ok
-
Types:
-
This = wxSpinCtrl()
From = integer()
To = integer()
-
This = wxSpinCtrl()
-
See external documentation.
getMin(This) -> integer()
-
Types:
-
This = wxSpinCtrl()
-
This = wxSpinCtrl()
-
See external documentation.
getMax(This) -> integer()
-
Types:
-
This = wxSpinCtrl()
-
This = wxSpinCtrl()
-
See external documentation.
destroy(This::wxSpinCtrl()) -> ok
-
Destroys this object, do not use object again
AUTHORS
<>