Vcl.Graphics.TProgressStage
Delphi
TProgressStage = (psStarting, psRunning, psEnding);
C++
enum DECLSPEC_DENUM TProgressStage : unsigned char { psStarting, psRunning, psEnding };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.Graphics.pas Vcl.Graphics.hpp |
Vcl.Graphics | Vcl.Graphics |
Description
TProgressStage indicates the stage of a lengthy operation.
The following table lists the possible values:
| Value | Meaning |
|---|---|
|
psStarting |
The operation is about to begin. |
|
psRunning |
The operation is underway and has not yet completed. |
|
psEnding |
The operation has just completed. |