FMX.Graphics.TPathPoint

De RAD Studio API Documentation
Aller à : navigation, rechercher

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;
    static TPathPoint __fastcall Create(const TPathPointKind AKind, const System::Types::TPointF &APoint);
    static bool __fastcall _op_Equality(const TPathPoint &APoint1, const TPathPoint &APoint2);
    bool __fastcall operator==(const TPathPoint& __rhs) { return TPathPoint::_op_Equality(*this, __rhs); };
    static bool __fastcall _op_Inequality(const TPathPoint &APoint1, const TPathPoint &APoint2);
    bool __fastcall operator!=(const TPathPoint& __rhs) { return TPathPoint::_op_Inequality(*this, __rhs); };
};

Propriétés

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

Description

Définit un point TPathData.

Point conserve un TPointF.

Kind conserve le type de Point.

Voir aussi