blob: 85456b98f34a387ee5272c619ebabcc19f14a6d2 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`ScrolledText` --- Scrolled Text Widget
2============================================
3
4.. module:: ScrolledText
5 :platform: Tk
6 :synopsis: Text widget with a vertical scroll bar.
7.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
8
9
10The :mod:`ScrolledText` module provides a class of the same name which
11implements a basic text widget which has a vertical scroll bar configured to do
12the "right thing." Using the :class:`ScrolledText` class is a lot easier than
13setting up a text widget and scroll bar directly. The constructor is the same
14as that of the :class:`Tkinter.Text` class.
15
16The text widget and scrollbar are packed together in a :class:`Frame`, and the
17methods of the :class:`Grid` and :class:`Pack` geometry managers are acquired
18from the :class:`Frame` object. This allows the :class:`ScrolledText` widget to
19be used directly to achieve most normal geometry management behavior.
20
21Should more specific control be necessary, the following attributes are
22available:
23
24
25.. attribute:: ScrolledText.frame
26
27 The frame which surrounds the text and scroll bar widgets.
28
29
30.. attribute:: ScrolledText.vbar
31
32 The scroll bar widget.