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

In This Topic
    AddMassPointsZ(IEnumerable<Coordinate3D>,Int32,SpatialReference) Method
    In This Topic
    Adds coordinates as nodes to the TIN. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    Public Overloads Sub AddMassPointsZ( _
       ByVal coordinates As IEnumerable(Of Coordinate3D), _
       ByVal tagValue As Integer, _
       Optional ByVal spatialReference As SpatialReference _
    ) 

    Parameters

    coordinates
    The coordinates to add.
    tagValue
    The tag value for the new nodes. A value of 0 will result in no tag assignment.
    spatialReference
    The spatial reference of the coordinates. 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 coordinates parameter is null.
    The editor is not in edit mode.
    Remarks
    The z-values of the input coordinates are used for the TIN.
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.5 or higher.
    See Also