-activerelief relief Specifies the relief to use when displaying the element that is active, if any. Elements other than the active element are always displayed with a raised relief.
-command command Specifies the prefix of a Tk command to invoke to change the view in the widget associated with the scrollbar. When a user requests a view change by manipulating the scrollbar, a Tk command is invoked. The actual command consists of this option followed by additional information as described later. This option almost always has a value such as \f5.t xview or \f5.t yview, consisting of the name of a widget and either \f5xview (if the scrollbar is for horizontal scrolling) or \f5yview (for vertical scrolling). All scrollable widgets have \f5xview and \f5yview commands that take exactly the additional arguments appended by the scrollbar as described in SCROLLING COMMANDS below.
-height dist Specifies a desired height for the scrollbar. If this option isn't specified, a suitable default height is chosen.
-width dist Specifies a desired width for the scrollbar. If this option isn't specified, a suitable default width is chosen.
A scrollbar is a widget that displays two arrows, one at each end of the scrollbar, and a slider in the middle portion of the scrollbar. It provides information about what is visible in an associated window that displays a document of some sort (such as a file being edited or a drawing). The position and size of the slider indicate which portion of the document is visible in the associated window. For example, if the slider in a vertical scrollbar covers the top third of the area between the two arrows, it means that the associated window displays the top third of its document.
Scrollbars can be used to adjust the view in the associated window by clicking or dragging with the mouse. See the BINDINGS section below for details.
12 \f5arrow1 The top or left arrow in the scrollbar.
12 \f5trough1 The region between the slider and \f5arrow1.
12 \f5slider The rectangle that indicates what is visible in the associated widget.
12 \f5trough2 The region between the slider and \f5arrow2.
12 \f5arrow2 The bottom or right arrow in the scrollbar.
.EX pathName option ?arg arg ...?
pathName \f5activate ?element? Marks the element indicated by element as active, which causes it to be displayed as specified by the \f5activebackground option. The only element values understood by this command are \f5arrow1, \f5slider, or \f5arrow2. If any other value is specified then no element of the scrollbar will be active. If element is not specified, the command returns the name of the element that is currently active, or an empty string if no element is active.
pathName \f5cget option Returns the current value of the configuration option given by option. Option may have any of the values accepted by the \f5scrollbar command.
pathName \f5configure ?option? ?value option value ...? Query or modify the configuration options of the widget. If no option is specified, returns a list of all of the available options for pathName. If one or more option-value pairs are specified, then the command modifies the given widget option(s) to have the given value(s); in this case the command returns an empty string. Option may have any of the values accepted by the \f5scrollbar command.
pathName \f5delta deltaX deltaY Returns a real number indicating the fractional change in the scrollbar setting that corresponds to a given change in slider position. For example, if the scrollbar is horizontal, the result indicates how much the scrollbar setting must change to move the slider deltaX pixels to the right (deltaY is ignored in this case). If the scrollbar is vertical, the result indicates how much the scrollbar setting must change to move the slider deltaY pixels down. The arguments and the result may be zero or negative.
pathName \f5fraction x y Returns a real number between 0 and 1 indicating where the point given by x and y lies in the trough area of the scrollbar. The value 0 corresponds to the top or left of the trough, the value 1 corresponds to the bottom or right, 0.5 corresponds to the middle, and so on. X and y must be pixel coordinates relative to the scrollbar widget. If x and y refer to a point outside the trough, the closest point in the trough is used.
pathName \f5get Returns the scrollbar settings in the form of a list whose elements are the arguments to the most recent \f5set widget command.
pathName \f5identify x y Returns the name of the element under the point given by x and y (such as \f5arrow1), or an empty string if the point does not lie in any element of the scrollbar. X and y must be pixel coordinates relative to the scrollbar widget.
pathName \f5set first last This command is invoked by the scrollbar's associated widget to tell the scrollbar about the current view in the widget. The command takes two arguments, each of which is a real fraction between 0 and 1. The fractions describe the range of the document that is visible in the associated widget. For example, if first is 0.2 and last is 0.4, it means that the first part of the document visible in the window is 20% of the way through the document, and the last visible part is 40% of the way through.
prefix \f5moveto fraction Fraction is a real number between 0 and 1. The widget should adjust its view so that the point given by fraction appears at the beginning of the widget. If fraction is 0 it refers to the beginning of the document. 1.0 refers to the end of the document, 0.333 refers to a point one-third of the way through the document, and so on.
prefix \f5scroll number \f5unit The widget should adjust its view by number units. The units are defined in whatever way makes sense for the widget, such as characters or lines in a text widget. Number is either 1, which means one unit should scroll off the top or left of the window, or -1, which means that one unit should scroll off the bottom or right of the window.
prefix \f5scroll number \f5page The widget should adjust its view by number pages. It is up to the widget to define the meaning of a page; typically it is slightly less than what fits in the window, so that there is a slight overlap between the old and new views. Number is either 1, which means the next page should become visible, or -1, which means that the previous page should become visible.