NAME
SpinBox - SpinBox widget
CREATION
SpinBox pathName ?option value...?
OPTIONS from ArrowButton
  -background or -bg   -disabledforeground
  -foreground or -fg   -state
OPTIONS from Entry
  -command   -disabledforeground
  -dragenabled   -dragendcmd
  -dragevent   -draginitcmd
  -dragtype   -dropcmd
  -dropenabled   -dropovercmd
  -droptypes   -editable
  -entrybg (see -background)   -entryfg (see -foreground)
  -exportselection   -font
  -helptext   -helptype
  -helpvar   -highlightbackground
  -highlightcolor   -highlightthickness
  -insertbackground   -insertborderwidth
  -insertofftime   -insertontime
  -insertwidth   -justify
  -selectbackground   -selectborderwidth
  -selectforeground   -show
  -state   -takefocus
  -text   -textvariable
  -width   -xscrollcommand
OPTIONS from LabelFrame
  -background or -bg   -borderwidth or -bd
  -disabledforeground   -foreground or -fg
  -helptext   -helptype
  -helpvar   -label (see -text)
  -labelanchor (see -anchor)   -labelfont (see -font)
  -labelheight (see -height)   -labeljustify (see -justify)
  -labelwidth (see -width)   -name
  -padx   -pady
  -relief   -side
  -state   -underline
  -wraplength
WIDGET-SPECIFIC OPTIONS
  -modifycmd
  -range
  -values
WIDGET COMMAND
pathName cget option
pathName configure ?option? ?value option value ...?
pathName getvalue
pathName setvalue index



DESCRIPTION

SpinBox widget enables the user to select a value among a list given by the values option or a set of values defined by a mininum, a maximum and an increment.




WIDGET-SPECIFIC OPTIONS
-modifycmd
Specifies a Tcl command called when the user modify the value of the SpinBox.
-range
Specifies a list of three intergers (or real) describing the minimum, maximum and increment of the SpinBox.
-values
Specifies the values accepted by the SpinBox.


WIDGET COMMAND
pathName cget option
Returns the current value of the configuration option given by option. Option may have any of the values accepted by the create command.
pathName configure ?option? ?value option value ...?
Modify the configuration options of the widget. Option may have any of the values accepted by the create command, except those who are read-only.
pathName getvalue
Description text
pathName setvalue index
Description text