ArcGIS Pro 3.4 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TinNode Class / IsInsideDataArea Property
Example Version

    IsInsideDataArea Property (TinNode)
    Gets if this element is within the interpolation zone or the data area of the TIN. See TinDataset.GetDataArea. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public override bool IsInsideDataArea {get;}
    Example
    TIN Nodes
    // node coordinates
    var coord3D = node.Coordinate3D;
    var mapPoint = node.ToMapPoint();
    // is the node "inside"
    var isInsideNode = node.IsInsideDataArea;
    
    // get all other nodes connected to "node" 
    IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TinNode> adjNodes = node.GetAdjacentNodes();
    
    // get all edges that share "node" as a from node. 
    IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TinEdge> edges = node.GetIncidentEdges();
    
    // get all triangles that share "node"
    IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TinTriangle> triangles = node.GetIncidentTriangles();
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.2 or higher.
    See Also