Vcl.Touch.Gestures.TGestureEngine.DefaultEngineClass

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class property DefaultEngineClass: TGestureEngineClass  read FDefaultEngineClass write FDefaultEngineClass;

C++

/* static */ __property TGestureEngineClass DefaultEngineClass = {read=FDefaultEngineClass, write=FDefaultEngineClass};

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 gesturing engine.

Use the DefaultEngineClass property to specify the gesturing engine used by default for all controls. The CreateEngine method uses this value when assigning gesture engines to controls.

Change the value of the DefaultEngineClass to register your own custom gesturing engine that will be used within all the VCL framework. By default, the VCL supplied code selects the best matching engine consistent with the current operating system.

See Also