API:Vcl.Controls.TGestureEventInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TGestureEventInfo = record
    GestureID: TGestureID;
    Location: TPoint;
    Flags: TInteractiveGestureFlags;
    Angle: Double;
    InertiaVector: TSmallPoint;
    case Integer of
      0: (Distance: Integer);
      1: (TapLocation: TSmallPoint);
  end;

C++

struct DECLSPEC_DRECORD TGestureEventInfo
{
public:
    TGestureID GestureID;
    System::Types::TPoint Location;
    TInteractiveGestureFlags Flags;
    double Angle;
    System::Types::TSmallPoint InertiaVector;
public:
    union
    {
        struct
        {
            System::Types::TSmallPoint TapLocation;
        };
        struct
        {
            int Distance;
        };
    };
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

Embarcadero Technologies does not currently have any additional information.