FMX.Graphics.TPathPoint

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

Delphi

TPathPoint = packed record

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);
    static bool __fastcall _op_Inequality(const TPathPoint &APoint1, const TPathPoint &APoint2);
    friend bool operator ==(const TPathPoint &APoint1, const TPathPoint &APoint2) { return TPathPoint::_op_Equality(APoint1, APoint2); }
    friend bool operator !=(const TPathPoint &APoint1, const TPathPoint &APoint2) { return TPathPoint::_op_Inequality(APoint1, APoint2); }
};

プロパティ

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

説明

TPathData 点を定義します。


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

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

関連項目