Inserts a new Point into the Multipoint by copying the specified Point.

Namespace:  ESRI.ArcGISExplorer.Geometry

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

Syntax

C#
public void InsertPoint(
	int pointIndex,
	Point pt
)
Visual Basic (Declaration)
Public Sub InsertPoint ( _
	pointIndex As Integer, _
	pt As Point _
)

Parameters

pointIndex
Type: System..::.Int32

The index within the Multipoint to insert the new Point at.
pt
Type: ESRI.ArcGISExplorer.Geometry..::.Point

The new Point to copy in to the Multipoint. Cannot be null.

Remarks

Calling InsertPoint will copy in the new pt to the Multipoint, increasing the index of the subsequent Points in the Multipoint but otherwise leaving them unchanged.

See Also