Vcl.Graphics.TGraphic.OnProgress

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

property OnProgress: TProgressEvent read FOnProgress write FOnProgress;

C++

__property TProgressEvent OnProgress = {read=FOnProgress, write=FOnProgress};

プロパティ

種類 可視性 ソース ユニット
event public
Vcl.Graphics.pas
Vcl.Graphics.hpp
Vcl.Graphics TGraphic


説明

グラフィカル イメージが、変更処理に入ると発生します。

TGraphic の特定の子孫に対して、OnProgress は、画像データの読み込み、保存、転送など、時間のかかる処理の間に発生します。OnProgress を使用すると、アプリケーションは時間のかかる処理の進捗状況についてのフィードバックをユーザーに提供できます。

コンポーネントの開発者は、プロテクト メソッド Progress を呼び出すことによって、TGraphic の新しい派生クラスに対して OnProgress イベントを生成できます。 これらのイベントは、TPicture オブジェクトおよび TImage オブジェクトに伝播されます。

OnProgress は、Vcl.Graphics.TProgressEvent 型のイベント ハンドラです。

関連項目