ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Editing.COGO Namespace / TraverseExportOptions Class
Members Example

In This Topic
    TraverseExportOptions Class
    In This Topic
    Class for representing the options used in exporting a traverse. See Traverse.ExportAsync.
    Syntax
    Public NotInheritable Class TraverseExportOptions 
    public sealed class TraverseExportOptions 
    Example
    Export a traverse to a file
    var directionDecimalPlaces = 0;
    var distanceDecimalPlaces = 3;
    var exportOptions = new TraverseExportOptions("C:\\MyTraverseFileFolder\\MyTraverseFile.txt", 
                                  ArcGIS.Core.CIM.DirectionType.QuadrantBearing,
                                  ArcGIS.Core.CIM.DirectionUnits.DegreesMinutesSeconds, 
                                  directionDecimalPlaces, distanceDecimalPlaces);
    travParcel.Export(exportOptions);
    Inheritance Hierarchy

    System.Object
       ArcGIS.Desktop.Editing.COGO.TraverseExportOptions

    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.7 or higher.
    See Also