command
|
callback
|
Used to update the associated widget. This is typically the
xview or yview method of the scrolled widget.
If the user drags the scrollbar slider, the command is called as
callback(MOVETO, offset), where offset 0.0 means that the
slider is in its topmost (or leftmost) position, and offset 1.0
means that it is in its bottommost (or rightmost) position.
If the user clicks the arrow buttons, or clicks in the trough,
the command is called as callback(SCROLL, step, what). The
second argument is either "-1" or "1" depending
on the direction, and the third argument is UNITS to
scroll lines (or other units relevant for the scrolled widget), or
PAGES to scroll full pages.
These constants are not defined in Python 1.5.2 and earlier. For
compatibility, use the strings "moveto",
"scroll", "units", and
"pages"instead.
|
highlightbackground, highlightcolor
|
color
|
Controls how to draw the focus highlight border. When the widget
has focus, the border is drawn in the highlightcolor
color. Otherwise, it is drawn in the highlightbackground
color. The defaults are system specific.
|
relief
|
constant
|
Border decoration. The default is SUNKEN. Other
possible values are FLAT, RAISED,
GROOVE, and RIDGE.
Note that this option is ignored under Windows.
|