OptionallabelOptional label shown with the progress bar.
OptionalvalueRaw progress value returned by GetValue. Defaults to the resolved min (therefore 0 when min is omitted); rendering clamps only the displayed percentage, not this stored value.
OptionalminMinimum progress value. Defaults to 0.
OptionalmaxMaximum progress value. Defaults to 100.
OptionalstyleSupported renderer style properties. Unsupported keys are ignored.
Options for AddProgress. The wrapper stores and returns the raw finite numeric value. Rendering computes
(value - min) / (max - min), clamps the displayed percentage from 0% to 100%, and displays 0% whenmax <= min.