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)
| 979 | that something is happening.""" |
| 980 | |
| 981 | def __init__(self, master=None, **kw): |
| 982 | """Construct a Ttk Progressbar with parent master. |
| 983 | |
| 984 | STANDARD OPTIONS |
| 985 | |
| 986 | class, cursor, style, takefocus |
| 987 | |
| 988 | WIDGET-SPECIFIC OPTIONS |
| 989 | |
| 990 | orient, length, mode, maximum, value, variable, phase |
| 991 | """ |
| 992 | Widget.__init__(self, master, "ttk::progressbar", kw) |
| 993 | |
| 994 | |
| 995 | def start(self, interval=None): |