ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TopologyLayerCreationParams Class
Members Example

In This Topic
    TopologyLayerCreationParams Class
    In This Topic
    Represents an object to initialize and create a topology layer with pre-defined properties.
    Object Model
    TopologyLayerCreationParams ClassLayer ClassLayer ClassLayer ClassLayer ClassLayer ClassCIMDataConnection ClassItem ClassCIMLayerDocument ClassTopology Class
    Syntax
    Public Class TopologyLayerCreationParams 
       Inherits LayerCreationParams
    public class TopologyLayerCreationParams : LayerCreationParams 
    Example
    Create TopologyLayer with an Uri pointing to a Topology dataset
    {
        var path = @"D:\Data\CommunitySamplesData\Topology\GrandTeton.gdb\BackCountry\Backcountry_Topology";
        var lcp = new TopologyLayerCreationParams(new Uri(path));
        lcp.Name = "GrandTeton_Backcountry";
        lcp.AddAssociatedLayers = true;
        //Note: Needs QueuedTask to run
        var topoLayer = LayerFactory.Instance.CreateLayer<ArcGIS.Desktop.Mapping.TopologyLayer>(lcp, MapView.Active.Map);
    }
    Create Topology Layer using Topology dataset
    {
        //Get the Topology of another Topology layer
        var existingTopology = MapView.Active.Map.GetLayersAsFlattenedList().OfType<TopologyLayer>().FirstOrDefault();
        if (existingTopology != null)
        {
            var topology = existingTopology.GetTopology();
            //Configure the settings for a new Catalog layer using the CatalogDataset of an existing layer
            var topologyLyrParams = new TopologyLayerCreationParams(topology);
            topologyLyrParams.Name = "NewTopologyLayerFromAnotherTopologyLayer";
            topologyLyrParams.AddAssociatedLayers = true;
            //Note: Needs QueuedTask to run
            LayerFactory.Instance.CreateLayer<TopologyLayer>(topologyLyrParams, MapView.Active.Map);
        }
    }
    Inheritance Hierarchy

    System.Object
       ArcGIS.Desktop.Mapping.BaseCreationParams
          ArcGIS.Desktop.Mapping.MapMemberCreationParams
             ArcGIS.Desktop.Mapping.LayerCreationParams
                ArcGIS.Desktop.Mapping.TopologyLayerCreationParams

    Requirements

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

    ArcGIS Pro version: 3.1 or higher.
    See Also