public void InsertPoints( int patchIndex, int beforePointIndex, IEnumerable<MapPoint> points )
Public Sub InsertPoints( _ ByVal patchIndex As Integer, _ ByVal beforePointIndex As Integer, _ ByVal points As IEnumerable(Of MapPoint) _ )
Parameters
- patchIndex
- The patch index. Must be in the range [0, Patches.Count - 1] inclusive.
- beforePointIndex
- The index before the location where the point will be inserted. Must be int the range [0, Patch.Coords] inclusive. If the index is negative, the points will be added to the end of the Patch.Coords list.
- points
- The MapPoint collection to add. No point in the collection can be empty or null.