ArcGIS Pro 3.6 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TinEditor Class / DeleteEdgeTagValues Method
Example

In This Topic
    DeleteEdgeTagValues Method
    In This Topic
    Deletes all edge tag values in the TIN. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public void DeleteEdgeTagValues()
    Public Sub DeleteEdgeTagValues() 
    Exceptions
    ExceptionDescription
    This method must be called on the MCT. Use QueuedTask.Run.
    The editor is not in edit mode.
    Example
    Delete tag values
    // Delete all edge tags
    tinEditor.DeleteEdgeTagValues();
    
    // Delete all node tags
    tinEditor.DeleteNodeTagValues();
    
    // Delete all triangle tags
    tinEditor.DeleteTriangleTagValues();
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.5 or higher.
    See Also