ProgressBar

component fbx.ui.control.ProgressBar

ProgressBar shows two positions in a common timeline.

../../../_images/progressbar.png

ProgressBar element is used in Timeline.

ProgressBar {
    height: 40
    width: 200

    minimumValue: 0
    maximumValue: 1000

    value: 300
    preloadValue: 400
}
property minimumValue

Value at the leftmost end of the bar

property maximumValue

Value at the rightmost end of the bar

property value

Value the main progress bar currently exposes

property preloadValue

Value at the preload bar currently exposes. If no preloading needs to be shows, set this to minimumValue.

property smooth

Whether changes of value should be done atomically or animated.

method reset(value)
Parameters

value (int) – Future value

This jumps to the specified value, making the new value effective atomically, whatever the value of the smooth property.