FMX.Graphics.TPathPoint

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TPathPoint = packed record
    Kind: TPathPointKind;
    Point: TPointF;
    class function Create(const AKind: TPathPointKind; const APoint: TPointF): TPathPoint; static; inline;
    class operator Equal(const APoint1, APoint2: TPathPoint): Boolean;
    class operator NotEqual(const APoint1, APoint2: TPathPoint): Boolean;
  end;

C++

struct DECLSPEC_DRECORD TPathPoint
{
public:
    TPathPointKind Kind;
    System::Types::TPointF Point;
#ifndef _WIN64
    static TPathPoint __fastcall Create(const TPathPointKind AKind, const System::Types::TPointF &APoint);
#else /* _WIN64 */
    static TPathPoint __fastcall Create(const TPathPointKind AKind, const System::Types::TPointF APoint);
#endif /* _WIN64 */
    static bool __fastcall _op_Equality(const TPathPoint &APoint1, const TPathPoint &APoint2);
    static bool __fastcall _op_Inequality(const TPathPoint &APoint1, const TPathPoint &APoint2);
};

Properties

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

Description

Defines a TPathData point.

Point keeps a TPointF.

Kind keeps the type of Point.

See Also