# A ScrolledText widget feels like a text widget but also has a
# vertical scroll bar on its right. (Later, options may be added to
# add a horizontal bar as well, to make the bars disappear
# automatically when not needed, to move them to the other side of the
# window, etc.)
#
# Configuration options are passed to the Text widget.
# A Frame widget is inserted between the master and the text, to hold
# the Scrollbar widget.
# Most methods calls are inherited from the Text widget; Pack methods
# are redirected to the Frame widget however.
Functions |
| |
- float(no arg info)
- float(x) -> floating point number
- Convert a string or number to a floating point number, if possible.
- int(no arg info)
- int(x) -> integer
- Convert a string or number to an integer, if possible.
- A floating point argument will be truncated towards zero.
|