ArcGIS Pro 3.6 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TinEditor Class / SetTriangleOutsideDataArea Method
The index of the triangle. Triangle indices start at 1.
Example

In This Topic
    SetTriangleOutsideDataArea Method
    In This Topic
    Sets the specified triangle outside the TIN interpolation zone. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public void SetTriangleOutsideDataArea( 
       int index
    )
    Public Sub SetTriangleOutsideDataArea( _
       ByVal index As Integer _
    ) 

    Parameters

    index
    The index of the triangle. Triangle indices start at 1.
    Exceptions
    ExceptionDescription
    This method must be called on the MCT. Use QueuedTask.Run.
    The editor is not in edit mode.
    Remarks
    The data area of the TIN could be modified.
    Example
    Set triangle in/out of data area
    // Set triangle #7 to be inside the data area
    tinEditor.SetTriangleInsideDataArea(7);
    
    // Set triangle #9 to be outside the data area
    tinEditor.SetTriangleInsideDataArea(9);
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.5 or higher.
    See Also