ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Editing Namespace / GeodatabaseTopologyProperties Class / ClusterTolerance Property
Example

In This Topic
    ClusterTolerance Property
    In This Topic
    Gets the cluster tolerance for the topology.
    Syntax
    public double ClusterTolerance {get;}
    Public ReadOnly Property ClusterTolerance As Double
    Example
    Get geodatabase topology properties by name
    var topoProperties = await map.GetTopologyAsync("TopologyName") as GeodatabaseTopologyProperties;
    
    var workspace = topoProperties.WorkspaceName;
    var topoLayer = topoProperties.TopologyLayer;
    var clusterTolerance = topoProperties.ClusterTolerance;
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also