Removes a specified number of points from the specified ring within the Polygon, starting at the specified index position.
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 ringIndex,
int pointIndex,
int count
) |
Visual Basic (Declaration) |
---|
Public Sub RemovePointsAt ( _
ringIndex As Integer, _
pointIndex As Integer, _
count As Integer _
) |
Parameters
- ringIndex
- Type: System..::.Int32
The index position of the ring to remove points from.
- pointIndex
- Type: System..::.Int32
The index position of the first Point within the ringIndex to remove.
- count
- Type: System..::.Int32
The number of points to remove.
Remarks
Exceptions
Exception | Condition |
---|
System..::.ArgumentOutOfRangeException | The specified pointIndex and ringIndexmust exist
in the Polygon, and the specified count combined with the pointIndex must indicate a range of
existing points in the specified ring. |
See Also