This document is archived and information here might be outdated.  Recommended version.


IJunctionFeatureSource.SubtypeConnectivityPolicy Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IJ > IJunctionFeatureSource Interface > IJunctionFeatureSource.SubtypeConnectivityPolicy Property
ArcGIS Developer Help

IJunctionFeatureSource.SubtypeConnectivityPolicy Property

Policy determining how the junction elements in the specified subtype of this source connect to other edge elements.

[Visual Basic .NET]
Public Function get_SubtypeConnectivityPolicy ( _
    ByVal SubtypeCode As Integer _
) As esriNetworkJunctionConnectivityPolicy
[Visual Basic .NET]
Public Sub set_SubtypeConnectivityPolicy ( _
    ByVal SubtypeCode As Integer, _
    ByVal policy As esriNetworkJunctionConnectivityPolicy _
)
[C#]
public esriNetworkJunctionConnectivityPolicy get_SubtypeConnectivityPolicy (
    int SubtypeCode
);
[C#]
public void set_SubtypeConnectivityPolicy (
    int SubtypeCode,
    esriNetworkJunctionConnectivityPolicy policy
);
[C++]
HRESULT get_SubtypeConnectivityPolicy(
  long SubtypeCode,
  esriNetworkJunctionConnectivityPolicy* policy
);
[C++]
HRESULT put_SubtypeConnectivityPolicy(
  long SubtypeCode,
  esriNetworkJunctionConnectivityPolicy policy
);
[C++]
Parameters
SubtypeCode [in]

SubtypeCode is a parameter of type long policy [out, retval]
policy is a parameter of type esriNetworkJunctionConnectivityPolicy* SubtypeCode [in]
SubtypeCode is a parameter of type long policy [in]
policy is a parameter of type esriNetworkJunctionConnectivityPolicy

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

A JunctionFeatureSource can be assigned to connectivity group(s) in the network dataset in one of two ways:

If all features are assigned to the same connectivity group(s), then the SubtypeConnectivityPolicy property is not used.  See the ClassConnectivityPolicy property.

If features are assigned to a connectivity group(s) based on their Subtype values, then use the SubtypeConnectivityPolicy property to specify the appropriate junction connectivity policy for each Subtype value.

See Also

IJunctionFeatureSource Interface