FMX.Gestures.TGestureItemChangeEvent

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

Delphi

TGestureItemChangeEvent = procedure(Sender: TObject; Action: TGestureNotification; Item: TCustomGestureCollectionItem) of object;

C++

typedef void __fastcall (__closure *TGestureItemChangeEvent)(System::TObject* Sender, TGestureNotification Action, Fmx::Types::TCustomGestureCollectionItem* Item);

プロパティ

種類 可視性 ソース ユニット
type
typedef
public
FMX.Gestures.pas
FMX.Gestures.hpp
FMX.Gestures FMX.Gestures

説明

ジェスチャの変更または削除に対応するイベント ハンドラの型。

TGestureItemChangeEventTGestureCollectionOnItemChange イベント ハンドラの型で、このイベント ハンドラは、ジェスチャ(このイベント ハンドラのパラメータ)が削除または変更されたときに起動します。

Sender はジェスチャの適用先のコントロールです。これは、TouchManager/GestureManager プロパティに TGestureManager が割り当てられているコントロールです。

Action は TGestureNotification 型で、ジェスチャが変更されたか削除されたかを指定します。

Item は、コレクション内のジェスチャのうち、変更または削除されたものを指定します。

関連項目