Vcl.Touch.Gestures.TGestureEngine.DefaultRecognizerClass

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class property DefaultRecognizerClass: TCustomGestureRecognizerClass  read FDefaultRecognizerClass write SetDefaultRecognizerClass;

C++

/* static */ __property TCustomGestureRecognizerClass DefaultRecognizerClass = {read=FDefaultRecognizerClass, write=SetDefaultRecognizerClass};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Touch.Gestures.pas
Vcl.Touch.Gestures.hpp
Vcl.Touch.Gestures TGestureEngine

Description

Specifies the metaclass of the default gesture recognizer.

Use the DefaultRecognizerClass property to specify the class used to recognize the actual gestures based on the input set of points and the expected set of points. DefaultRecognizerClass is used by the CreateEngine method when assigning gesture engines to controls.

Change the value of the DefaultRecognizerClass to register you own custom gesture recognizer that will be used within all the VCL framework.

See Also