ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Data.NetworkDiagrams Namespace / FindDiagramFeatureQuery Class / AddConnectivityAssociations Property
Example

In This Topic
    AddConnectivityAssociations Property
    In This Topic
    Indicates whether connectivity associations are included.
    Syntax
    Public Property AddConnectivityAssociations As Boolean
    public bool AddConnectivityAssociations {get; set;}
    Example
    Find Diagram Features for a set of utility network rows
    {
      // Given a list of utility network feature GlobalIDs, find the corresponding diagram features in a network diagram
      static void FindDiagramFeatures(NetworkDiagram diagram, List<Guid> globalIDs)
      {
        FindDiagramFeatureQuery featureQuery = new FindDiagramFeatureQuery();
        featureQuery.NetworkRowGlobalIDs = globalIDs;
        featureQuery.AddAggregations = true;
        featureQuery.AddConnectivityAssociations = true;
        featureQuery.AddStructuralAttachments = true;
    
        IReadOnlyList<FindResultItem> features = diagram.FindDiagramFeatures(featureQuery);
        foreach (FindResultItem findFeature in features)
        {
          long objectID = findFeature.ObjectID;
          Guid guid = findFeature.GlobalID;
          GeometryType geometryType = findFeature.GeometryType;
          int sourceID = findFeature.SourceID;
        }
      }
    }
    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also