ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Editing Namespace / NoTopologyProperties Class
Members Example

In This Topic
    NoTopologyProperties Class
    In This Topic
    A class representing the "No Topology" option.
    Syntax
    public sealed class NoTopologyProperties : TopologyProperties 
    Public NotInheritable Class NoTopologyProperties 
       Inherits TopologyProperties
    Example
    Get the properties of the active topology in the map
    var map = MapView.Active.Map;
    var activeTopologyProperties = await map.GetActiveTopologyAsync();
    var isMapTopology = activeTopologyProperties is MapTopologyProperties;
    var isGdbTopology = activeTopologyProperties is GeodatabaseTopologyProperties;
    var isNoTopology = activeTopologyProperties is NoTopologyProperties;
    Inheritance Hierarchy

    System.Object
       ArcGIS.Desktop.Editing.TopologyProperties
          ArcGIS.Desktop.Editing.NoTopologyProperties

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also