Inserts a new set of Points into the Multipoint starting at the specified index, by copying the specified enumerable set of Points.

Namespace:  ESRI.ArcGISExplorer.Geometry

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

Syntax

C#
public void InsertPoints(
	int pointIndex,
	IEnumerable<Point> points
)
Visual Basic (Declaration)
Public Sub InsertPoints ( _
	pointIndex As Integer, _
	points As IEnumerable(Of Point) _
)

Parameters

pointIndex
Type: System..::.Int32

The index within the Multipoint to insert the first new Point at.
points
Type: System.Collections.Generic..::.IEnumerable<(Of <(Point>)>)

A generic enumerable set of Point objects to copy in to the Multipoint. Cannot be null.

Remarks

Calling InsertPoint will copy in the new points to the Multipoint, and increase the index of the existing Points with an index greater than the pointIndex plus the number of items in points, increasing the index of all the subsequent Points in the Multipoint.

See Also