ArcGIS Pro 3.7 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 ReadOnly Property ClusterTolerance As Double
    public double ClusterTolerance {get;}
    Example
    Get geodatabase topology properties by name
    // Asynchronously retrieves the properties of a geodatabase topology with the specified name from the given map.
    var topoProperties = await activeMap.GetTopologyAsync(topologyName) as GeodatabaseTopologyProperties;
    
    var workspace = topoProperties.WorkspaceName;
    var topoLayer = topoProperties.TopologyLayer;
    var clusterTolerance = topoProperties.ClusterTolerance;
    Requirements

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

    ArcGIS Pro version: 3.1 or higher.
    See Also