ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Data.UtilityNetwork Namespace / Tier Class
Members Example

In This Topic
    Tier Class
    In This Topic
    Tiers demarcate a logical level within a network. E.g., in an electric distribution network, there may be Subtransmission, MediumVoltage and LowVoltage tiers.
    Object Model
    Tier ClassDomainNetwork ClassTraceConfiguration ClassTierGroup Class
    Syntax
    Public NotInheritable Class Tier 
    public sealed class Tier 
    Example
    Update all dirty subnetworks in a tier
    {
      // This routine updates all dirty subnetworks in a given tier and refreshes the map view
      static void UpdateAllDirtySubnetworks(UtilityNetwork utilityNetwork, Tier tier, MapView mapView)
      {
        using SubnetworkManager subnetworkManager = utilityNetwork.GetSubnetworkManager();
        subnetworkManager.UpdateAllSubnetworks(tier, true);
    
        mapView.Redraw(true);
      }
    }
    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.Data.UtilityNetwork.Tier

    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also