FMX.StdCtrls.TProgressBar.Value

From RAD Studio API Documentation
Jump to: navigation, search

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 Value to determine the progress from Min to Max.

Set a needed value for the Value property, and the progress bar will display a position between Min and Max. For example, when the process completes, set Value to Max so that it appears completely filled.

By default, the Min and Max values of the progress bar are represented in percentage terms, where Min is 0 (0% complete) and Max is 100 (100% complete).

See Also