Vcl.Graphics.TGraphic.Progress
Delphi
procedure Progress(Sender: TObject; Stage: TProgressStage;
PercentDone: Byte; RedrawNow: Boolean; const R: TRect; const Msg: string); dynamic;
C++
DYNAMIC void __fastcall Progress(System::TObject* Sender, TProgressStage Stage, System::Byte PercentDone, bool RedrawNow, const Winapi::Windows::TRect &R, const System::UnicodeString Msg);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
procedure function |
protected | Vcl.Graphics.pas Vcl.Graphics.hpp |
Vcl.Graphics | TGraphic |
説明
グラフィックが変更されているときに OnProgress イベントを生成します。
Progress は、グラフィックが変更されているときに OnProgress イベントを生成します。
TGraphic の特定の派生クラスでは、画像データのロード、格納、または変換などの低速な処理の際に OnProgress が発生します。OnProgress を使用すると、アプリケーションは処理の進捗状況についてのフィードバックをユーザーに提供できます。
コンポーネントの開発者は、プロテクト メソッド Progress を呼び出すことによって、TGraphic の新しい派生クラスに対して OnProgress イベントを生成できます。これらのイベントは、TPicture オブジェクトおよび TImage オブジェクトに伝播されます。