FMX.Graphics.TPathPoint

提供: RAD Studio API Documentation
移動先: 案内検索

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

プロパティ

種類 可視性 ソース ユニット
record
struct
public
FMX.Graphics.pas
FMX.Graphics.hpp
FMX.Graphics FMX.Graphics

説明

TPathData 点を定義します。


Point には TPointF が保持されます。

Kind には Point の種類が保持されます。

関連項目