1. Component library

ProgressBar

Version:

The ProgressBar control displays a horizontal bar. You can specify a value between 0 and 100, and the control displays part of the bar in color to indicate the level of progress.

The control can show the value in percent as a label in the middle of the bar.

Properties

NameDescriptionDefault Value
UpdateIntervalSpecify an update interval in milliseconds. The ProgressBar control raises an event at the end of each of these intervals. The event is called intervalCompleted + the ID of the control, for example, intervalCompletedProgressBar1. You can listen for this event in page code. If you specify 0 as the value, the control does not raise an event.2000
ValueSpecify a value between 0 and 100. For example, if the value is x, the control shows x/100 of the bar as colored. You can set the value from code like this: app.ProgressBar1.set(“value”, 80).0
ShowLabelIf true, the control shows the percentage as a label in the middle of the bar.False
If you have suggestions for improving this article, let us know!