Removes the specified number of Points, starting at the specified index.

Namespace:  ESRI.ArcGISExplorer.Geometry

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

Syntax

C#
public void RemovePointsAt(
	int pointIndex,
	int count
)
Visual Basic (Declaration)
Public Sub RemovePointsAt ( _
	pointIndex As Integer, _
	count As Integer _
)

Parameters

pointIndex
Type: System..::.Int32

The index within the Multipoint of the first Point to remove.
count
Type: System..::.Int32

The number of Points to remove, starting at pointIndex.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeExceptionThe pointIndex and count parameters be used to attempt to points at indexes that do not exist.

See Also