Ttk Scrollbar controls the viewport of a scrollable widget.
| 1072 | |
| 1073 | |
| 1074 | class Scrollbar(Widget, tkinter.Scrollbar): |
| 1075 | """Ttk Scrollbar controls the viewport of a scrollable widget.""" |
| 1076 | |
| 1077 | def __init__(self, master=None, **kw): |
| 1078 | """Construct a Ttk Scrollbar with parent master. |
| 1079 | |
| 1080 | STANDARD OPTIONS |
| 1081 | |
| 1082 | class, cursor, style, takefocus |
| 1083 | |
| 1084 | WIDGET-SPECIFIC OPTIONS |
| 1085 | |
| 1086 | command, orient |
| 1087 | """ |
| 1088 | Widget.__init__(self, master, "ttk::scrollbar", kw) |
| 1089 | |
| 1090 | |
| 1091 | class Separator(Widget): |
no outgoing calls