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


IJunctionFeatureSource.AddClassConnectivityGroup Method (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.AddClassConnectivityGroup Method
ArcGIS Developer Help

IJunctionFeatureSource.AddClassConnectivityGroup Method

Adds a connectivity group in which this junction feature source participates.

[Visual Basic .NET]
Public Sub AddClassConnectivityGroup ( _
    ByVal group As Integer _
)
[C#]
public void AddClassConnectivityGroup (
    int group
);
[C++]
HRESULT AddClassConnectivityGroup(
  long group
);
[C++]
Parameters
group [in]

group is a parameter of type long

Product Availability

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

Remarks

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 use the AddClassConnectivityGroup method to add a new connectivity group to the list of connectivity groups that this JunctionFeatureSource is assigned.

If features are assigned to connectivity group(s) based on their Subtype values, then the AddClassConnectivityGroup method is not used.  See the AddSubtypeConnectivityGroup method.

See Also

IJunctionFeatureSource Interface