ArcGIS Pro 3.5 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TinEditor Class / AddPointZ Method
The point to add. The z-value of the point is used for the TIN.
The tag value for the new node. A value of 0 will result in no tag assignment.

In This Topic
    AddPointZ Method
    In This Topic
    Adds a 3D point as a node to the TIN. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public int AddPointZ( 
       MapPoint point,
       int tagValue
    )
    Public Function AddPointZ( _
       ByVal point As MapPoint, _
       ByVal tagValue As Integer _
    ) As Integer

    Parameters

    point
    The point to add. The z-value of the point is used for the TIN.
    tagValue
    The tag value for the new node. A value of 0 will result in no tag assignment.

    Return Value

    The index of the newly added node. It will be one larger than the previous node count if the point is successfully added. It will be equal to the value of the existing node if it is snapped to it.
    Exceptions
    ExceptionDescription
    This method must be called on the MCT. Use QueuedTask.Run.
    The point is null.
    The point is empty or point.HasZ is false.
    The editor is not in edit mode.
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.5 or higher.
    See Also