FMX.Maps.TMapPolylineDescriptor

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  TMapPolylineDescriptor = record
    Points: TMapPolygonPolyvertex;
    Geodesic: Boolean;
    StrokeColor: TAlphaColor;
    StrokeWidth: Single;
    ZIndex: Single;
    class function Create(const Points: TArray<TMapCoordinate>): TMapPolylineDescriptor; static;
  end;

C++

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

Propriétés

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


Description

Enregistrement qui définit une polyligne.

Une polyligne est une figure ouverte. Pour obtenir une polyligne fermée, assurez-vous que les points de début et de fin correspondent.

Voir aussi