Initializes a new instance of the Polyline class, adding the specified points and applying the specified CoordinateSystem.

Namespace:  ESRI.ArcGISExplorer.Geometry

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public Polyline(
	IEnumerable<Point> points,
	CoordinateSystem coordinateSystem
)
Visual Basic (Declaration)
Public Sub New ( _
	points As IEnumerable(Of Point), _
	coordinateSystem As CoordinateSystem _
)

Parameters

points
Type: System.Collections.Generic..::.IEnumerable<(Of <(Point>)>)

A generic enumerable set of Point objects to copy in to the new Polyline.
coordinateSystem
Type: ESRI.ArcGISExplorer.Geometry..::.CoordinateSystem

The CoordinateSystem of the new Polyline.

Remarks

Use this overload to initialize a Polyline if the coordinate system of the geometry is known at initialization time, but the spatial location is not known.

See Also