Vcl.Controls.TCMGesture

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TCMGesture = record
    Msg: Cardinal;
    MsgFiller: TDWordFiller;
    Reserved: WPARAM;
    Info: PGestureEventInfo;
    Result: LRESULT;
  end;

C++

struct DECLSPEC_DRECORD TCMGesture
{
public:
    unsigned Msg;
#ifndef _WIN64
#else /* _WIN64 */
    Winapi::Messages::TDWordFiller MsgFiller;
#endif /* _WIN64 */
    NativeUInt Reserved;
    TGestureEventInfo *Info;
    NativeInt Result;
};

Properties

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

Description

TCMGesture is used for gesture event messages.

TCMGesture is a record that contains information about a gesture event. TCMGesture is used internally in the VCL framework to pass gesturing information to components.

See Also