update ddoc

This commit is contained in:
Vadim Lopatin 2016-10-11 11:08:17 +03:00
parent 5ffe5db1e9
commit 6c8785e9dd
1 changed files with 9 additions and 0 deletions

View File

@ -11,6 +11,15 @@ Synopsis:
----
import dlangui.widgets.progressbar;
auto pb = new ProgressBarWidget();
// set progress
pb.progress = 300; // 0 .. 1000
// set animation interval
pb.animationInterval = 50; // 50 milliseconds
// for indeterminate state: set progress to PROGRESS_INDETERMINATE (-1)
pb.progress = PROGRESS_INDETERMINATE;
----
Copyright: Vadim Lopatin, 2016