ProgressBar QML Type
The ProgressBar component visually indicates the progress of a process of determinate or indeterminate duration. More...
Import Statement: | import Ubuntu.Components 1.2 |
Properties
- indeterminate : bool
- maximumValue : real
- minimumValue : real
- showProgressPercentage : bool
- value : real
Detailed Description
Example:
Item { ProgressBar { id: indeterminateBar indeterminate: true } ProgressBar { id: determinateBar minimumValue: -3.0 maximumValue: 15 } }
Property Documentation
Specifies whether the progress interval is unknown. When set, altering other properties do not have any effect on the component's behavior. By default the property is set to false.
Specifies if the value of the progress is visible
This QML property was introduced in Ubuntu.Components 1.1.