FMX.Maps.TMapPolygonDescriptor

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

TMapPolygonDescriptor = record

C++

struct DECLSPEC_DRECORD TMapPolygonDescriptor
{
public:
    TMapPolygonPolyvertex Outline;
#ifndef _WIN64
    System::DynamicArray<TMapPolygonPolyvertex> Holes;
#else /* _WIN64 */
    System::TArray__1<TMapPolygonPolyvertex> Holes;
#endif /* _WIN64 */
    bool Geodesic;
    System::Uitypes::TAlphaColor FillColor;
    System::Uitypes::TAlphaColor StrokeColor;
    float StrokeWidth;
    float ZIndex;
#ifndef _WIN64
    static TMapPolygonDescriptor __fastcall Create(const System::DynamicArray<TMapCoordinate> Outline);
    void __fastcall AddHole(const System::DynamicArray<TMapCoordinate> Points);
#else /* _WIN64 */
    static TMapPolygonDescriptor __fastcall Create(const System::TArray__1<TMapCoordinate> Outline);
    void __fastcall AddHole(const System::TArray__1<TMapCoordinate> Points);
#endif /* _WIN64 */
};

Eigenschaften

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


Beschreibung

Record, der ein Kartenpolygon definiert.

Siehe auch