C
ProgressBar QML Type
Indicates the progress of an operation. More...
Import Statement: | import QtQuick.Controls |
Since: | Qt Quick Ultralite 1.0 |
Inherits: |
Properties
- from : real
- position : real
- to : real
- value : real
- visualPosition : real
Detailed Description
ProgressBar indicates the progress of an operation. The value should be updated regularly. The range is defined by its from and to properties, which can contain any value.
ProgressBar {
value: 0.5
}
See also Controls Styling and Indicator Controls.
Property Documentation
from : real |
[read-only] position : real |
This property holds the logical position of the progress.
The position is expressed as a fraction of the value, in the range 0.0 - 1.0
.
See also value and visualPosition.
to : real |
value : real |
[read-only] visualPosition : real |
Available under certain Qt licenses.
Find out more.