ProgressElement
The HTMLProgressElement
interface provides special properties and methods (beyond the regular HTMLElement
interface it also has available to it by inheritance) for manipulating the layout and presentation of progress
elements.
Documentation HTMLProgressElement by Mozilla Contributors, licensed under CC-BY-SA 2.5.
Instance Members
value: Float
Is a double
value that reflects the current value; if the progress bar is an indeterminate progress bar, it returns 0
.
max: Float
Is a double
value reflecting the content attribute of the same name, limited to numbers greater than zero. Its default value is 1.0
.
position: Float
Returns a double
value returning the result of dividing the current value (value
) by the maximum value (max
); if the progress bar is an indeterminate progress bar, it returns -1
.
labels: NodeList
Returns NodeList
containing the list of label
elements that are labels for this element.