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

NoTopologyProperties Class
A class representing the "No Topology" option.
Syntax
public sealed class NoTopologyProperties : 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