FMX.StdCtrls.TProgressBar.Value
Delphi
property Value: Single read GetValue write SetValue stored ValueStored nodefault;
C++
__property float Value = {read=GetValue, write=SetValue, stored=ValueStored};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | FMX.StdCtrls.pas FMX.StdCtrls.hpp |
FMX.StdCtrls | TProgressBar |
Description
Specifies the current position of the progress bar.
You can read Position to determine how far the process tracked by the progress bar has advanced from Min toward Max. Set Position to cause the progress bar to display a position between Min and Max. For example, when the process tracked by the progress bar completes, set Position to Max so that it appears completely filled.
When a progress bar is created, Min and Max represent percentages, where Min is 0 (0% complete) and Max is 100 (100% complete). If these values are not changed, Position is the percentage of the process that has already been completed.