Vcl.SvcMgr.TCurrentStatus
Delphi
TCurrentStatus = (csStopped, csStartPending, csStopPending, csRunning,
csContinuePending, csPausePending, csPaused);
C++
enum DECLSPEC_DENUM TCurrentStatus : unsigned char { csStopped, csStartPending, csStopPending, csRunning, csContinuePending, csPausePending, csPaused };
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 |
|---|---|---|---|---|
| enum | public | Vcl.SvcMgr.pas Vcl.SvcMgr.hpp |
Vcl.SvcMgr | Vcl.SvcMgr |
説明
TCurrentStatus 型は,サービスの状態を示します。
TCurrentStatus 型に指定できる値を示します。
| 値 | 意味 |
|---|---|
|
csStopped |
サービスは実行されていない。 |
|
csStartPending |
サービスは起動中である。 |
|
csStopPending |
サービスは停止しつつある。 |
|
csRunning |
サービスは実行中である。 |
|
csContinuePending |
サービスの継続が保留されている。 |
|
csPausePending |
サービスの中断が保留されている。 |
|
csPaused |
サービスは中断されている。 |