class tkinter.ttk.Progressbar
-
start(interval=None) -
Begin autoincrement mode: schedules a recurring timer event that calls
Progressbar.step()every interval milliseconds. If omitted, interval defaults to 50 milliseconds.
-
step(amount=None) -
Increments the progress bar’s value by amount.
amount defaults to 1.0 if omitted.
-
stop() -
Stop autoincrement mode: cancels any recurring timer event initiated by
Progressbar.start()for this progress bar.
Please login to continue.