Vcl.Controls.TCustomGestureCollectionItem.GestureType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property GestureType: TGestureType read GetGestureType;

C++

__property TGestureType GestureType = {read=GetGestureType, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TCustomGestureCollectionItem

Description

Specifies if a gesture is standard, custom, or registered custom.

The GestureType property is assigned to a gesture when it is created or registered. GestureType is of type TGestureType. gtStandard indicates a standard gesture bundled with the VCL framework. gtCustom is reserved for custom gestures created in an application using the gesture recorder. gtRegistered is used for custom gestures that have been registered in third-party packages.

See Also