Public Sub Export( _ ByVal options As TraverseExportOptions _ )
public void Export( TraverseExportOptions options )
Parameters
- options
- The export options. See TraverseExportOptions.
Public Sub Export( _ ByVal options As TraverseExportOptions _ )
public void Export( TraverseExportOptions options )
| Exception | Description |
|---|---|
| System.ArgumentNullException | Options or TraverseExportOptions.OutputFileName is null. |
| System.InvalidOperationException | The traverse file could not be saved. |
| ArcGIS.Core.CalledOnWrongThreadException | This method or property must be called within the lambda passed to QueuedTask.Run. |
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);
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)