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

    DefaultTolerance Property
    Gets the default tolerance. This value is in meters.
    Syntax
    public double DefaultTolerance {get;}
    Example
    Get map topology properties
    var mapTopoProperties = await map.GetTopologyAsync("Map") as MapTopologyProperties;
    var tolerance_m = mapTopoProperties.Tolerance;
    var defaultTolerance_m = mapTopoProperties.DefaultTolerance;
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also