ArcGIS Pro 3.2 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 double DefaultTolerance {get;}
    Public ReadOnly Property DefaultTolerance As Double
    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