ArcGIS Pro 3.5 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TinEditor Class / AddMassPoints Method
The points to add.
The tag value for the new nodes. A value of 0 will result in no tag assignment.
The z-value for the new nodes. If you want to use the z-values from the points, call AddMassPointsZ(IEnumerable<MapPoint>,Int32,SpatialReference).
The spatial reference of the points. If it is the same as the TIN spatial reference, you can pass null.

In This Topic
    AddMassPoints Method
    In This Topic
    Adds points as nodes to the TIN. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    Public Sub AddMassPoints( _
       ByVal points As IEnumerable(Of MapPoint), _
       ByVal tagValue As Integer, _
       ByVal z As Double, _
       Optional ByVal spatialReference As SpatialReference _
    ) 

    Parameters

    points
    The points to add.
    tagValue
    The tag value for the new nodes. A value of 0 will result in no tag assignment.
    z
    The z-value for the new nodes. If you want to use the z-values from the points, call AddMassPointsZ(IEnumerable<MapPoint>,Int32,SpatialReference).
    spatialReference
    The spatial reference of the points. If it is the same as the TIN spatial reference, you can pass null.
    Exceptions
    ExceptionDescription
    This method must be called on the MCT. Use QueuedTask.Run.
    The points parameter is null.
    The editor is not in edit mode.
    The points are all null or empty.
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.5 or higher.
    See Also