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


IEdgeFeatureSource.SubtypeConnectivityGroup Property (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (GeoDatabase)  

IEdgeFeatureSource.SubtypeConnectivityGroup Property

Connectivity group in which the specified subtype of this edge feature source participates.

[Visual Basic .NET]
Public Function get_SubtypeConnectivityGroup ( _
    ByVal SubtypeCode As Integer _
) As Integer
[Visual Basic .NET]
Public Sub set_SubtypeConnectivityGroup ( _
    ByVal SubtypeCode As Integer, _
    ByVal group As Integer _
)
[C#]
public int get_SubtypeConnectivityGroup (
    int SubtypeCode
);
[C#]
public void set_SubtypeConnectivityGroup (
    int SubtypeCode,
    int group
);
[C++]
HRESULT get_SubtypeConnectivityGroup(
  long SubtypeCode,
  long* group
);
[C++]
HRESULT put_SubtypeConnectivityGroup(
  long SubtypeCode,
  long group
);
[C++]

Parameters SubtypeCode [in] SubtypeCode is a parameter of type long group [out, retval] group is a parameter of type long SubtypeCode [in] SubtypeCode is a parameter of type long group [in] group is a parameter of type long

Product Availability

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

Remarks

An EdgeFeatureSource can be assigned to a connectivity group in the network dataset in one of two ways:

If all features are assigned to the same connectivity group, then the SubtypeConnectivityGroup property is not used.  See the ClassConnectivityGroup property.

If features are assigned to a connectivity group based on their Subtype values, then each Subtype value can be assigned to a different connectivity group.  Use the SubtypeConnectivityGroup property to specify the connectivity group that each Subtype value is assigned.

See Also

IEdgeFeatureSource Interface