Vcl.Controls.TControl.DoGesture

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

Delphi

procedure DoGesture(const EventInfo: TGestureEventInfo; var Handled: Boolean); virtual;

C++

virtual void __fastcall DoGesture(const TGestureEventInfo &EventInfo, bool &Handled);

プロパティ

種類 可視性 ソース ユニット
procedure
function
protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TControl

説明

処理されていないジェスチャ イベントを処理します。

発生したジェスチャ イベントをユーザーが処理しなかった場合には、DoGesture が自動的に実行されます。DoGesture が実行されるのは、OnGesture が設定されていないか、OnGesture でジェスチャ イベントが処理されなかった場合だけです。

下位クラスで DoGesture をオーバーライドすると、ジェスチャ イベントがユーザーに処理されなかった場合のデフォルトの振る舞いを設定することができます。TControlDoGesture メソッドは、ただ結果を返すだけで、特別な処理は何も行いません。

関連項目