Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

MapLine.ActualPoints Property

Returns the collection of points used to plot a line.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v24.2.dll

NuGet Package: DevExpress.Win.Map

#Declaration

[Browsable(false)]
public IEnumerable<CoordPoint> ActualPoints { get; }

#Property Value

Type Description
IEnumerable<CoordPoint>

An object implementing the IEnumerable<T><CoordPoint,> interface and containing points used to plot line.

#Remarks

If the MapLine.IsGeodesic property is set to false, then this collection stores two points: MapLine.Point1 and MapLine.Point2.

If MapLine.IsGeodesic is set to true, then this collection stores several points required to plot the line as geodesic.

See Also