ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Editing Namespace / MapTopologyProperties Class / DefaultTolerance Property
Example

In This Topic
    DefaultTolerance Property
    In This Topic
    Gets the default tolerance. This value is in meters.
    Syntax
    Public ReadOnly Property DefaultTolerance As Double
    public double DefaultTolerance {get;}
    Example
    Get map topology properties
    {
      // Retrieves the topology properties for the specified map asynchronously.
      var mapTopoProperties = await activeMap.GetTopologyAsync("Map") as MapTopologyProperties;
      var tolerance_m = mapTopoProperties.Tolerance;
      var defaultTolerance_m = mapTopoProperties.DefaultTolerance;
    }
    Requirements

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

    ArcGIS Pro version: 3.1 or higher.
    See Also