FMX.Types.TTouch

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TTouch = record
    Location: TPointF;
  end;

C++

struct DECLSPEC_DRECORD TTouch
{
public:
    System::Types::TPointF Location;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.Types.pas
FMX.Types.hpp
FMX.Types FMX.Types

Description

Each TTouch holds the location of a touch point on the screen.

TPointF is the Location of a point on the screen.

See Also