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

In This Topic
    Tolerance Property (MapTopologyProperties)
    In This Topic
    Gets the topology tolerance. This value is in meters.
    Syntax
    Public Shadows ReadOnly Property Tolerance As Double
    public new double Tolerance {get;}
    Remarks
    If a user specified tolerance has been specified, then this value is returned, otherwise the tolerance is the same as the DefaultTolerance
    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