ArcGIS Pro 2.6 API Reference Guide
RemovePoints Method (MultipatchBuilderEx)

ArcGIS.Core.Geometry Namespace > MultipatchBuilderEx Class : RemovePoints Method
The index of the patch from which points are removed. Must be in the range [0, Patches.Count - 1] inclusive.
The index from which the points are removed. Must be in the range [0, Patch.Coords.Count - 1] inclusive.
The index up to which the points are removed. Must be in the range [from, Patch.Coords.Count - 2] inclusive. The to index is excluded from the indices that are removed. For example, if from = 3, to = 7, then the points at indices 3, 4, 5, and 6 will be removed.
A convenience method to remove points from the specified Patch
Syntax
public void RemovePoints( 
   int patchIndex,
   int from,
   int to
)
Public Sub RemovePoints( _
   ByVal patchIndex As Integer, _
   ByVal from As Integer, _
   ByVal to As Integer _
) 

Parameters

patchIndex
The index of the patch from which points are removed. Must be in the range [0, Patches.Count - 1] inclusive.
from
The index from which the points are removed. Must be in the range [0, Patch.Coords.Count - 1] inclusive.
to
The index up to which the points are removed. Must be in the range [from, Patch.Coords.Count - 2] inclusive. The to index is excluded from the indices that are removed. For example, if from = 3, to = 7, then the points at indices 3, 4, 5, and 6 will be removed.
Exceptions
ExceptionDescription
The from parameter is less than zero or greater than or equal to the patch point count.
The to parameter is less than the from parameter or greater than the patch point count.
Remarks
If this patch has attributes Ms, IDs, Normals, or TextureCoords2D then the attributes will be removed also.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

MultipatchBuilderEx Class
MultipatchBuilderEx Members