Construct a Ttk Progressbar with parent master. STANDARD OPTIONS class, cursor, style, takefocus WIDGET-SPECIFIC OPTIONS orient, length, mode, maximum, value, variable, phase
(self, master=None, **kw)
| 969 | that something is happening.""" |
| 970 | |
| 971 | def __init__(self, master=None, **kw): |
| 972 | """Construct a Ttk Progressbar with parent master. |
| 973 | |
| 974 | STANDARD OPTIONS |
| 975 | |
| 976 | class, cursor, style, takefocus |
| 977 | |
| 978 | WIDGET-SPECIFIC OPTIONS |
| 979 | |
| 980 | orient, length, mode, maximum, value, variable, phase |
| 981 | """ |
| 982 | Widget.__init__(self, master, "ttk::progressbar", kw) |
| 983 | |
| 984 | |
| 985 | def start(self, interval=None): |