API:FMX.Graphics.TPathPoint

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

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);
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
FMX.Graphics.pas
FMX.Graphics.hpp
FMX.Graphics FMX.Graphics

Beschreibung

Embarcadero Technologies verfügt zurzeit über keine zusätzlichen Informationen. Bitte unterstützen Sie uns bei der Dokumentation dieses Themas, indem Sie Ihre Kommentare auf der Diskussionsseite eingeben.