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


IEdgeFeatureSource.UsesSubtypes Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IE > IEdgeFeatureSource Interface > IEdgeFeatureSource.UsesSubtypes Property
ArcGIS Developer Help

IEdgeFeatureSource.UsesSubtypes Property

Indicates if this edge feature source determines connectivity groups and policies by subtypes.

[Visual Basic .NET]
Public Property UsesSubtypes As Boolean
[C#]
public bool UsesSubtypes {get; set;}
[C++]
HRESULT get_UsesSubtypes(
  Boolean* bySubtype
);
[C++]
HRESULT put_UsesSubtypes(
  VARIANT_BOOL bySubtype
);
[C++]
Parameters
bySubtype [out, retval]

bySubtype is a parameter of type bool* bySubtype [in]
bySubtype is a parameter of type bool

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 UsesSubtypes property should be set to False.  This means that the ClassConnectivityGroup and ClassConnectivityPolicysettings will apply to this EdgeFeatureSource.

If features are assigned to a connectivity group based on their Subtype values, then the UsesSubtypes property should be set to True.  This means that the SubtypeConnectivityGroup and SubtypeConnectivityPolicysettings will apply to this EdgeFeatureSource.

See Also

IEdgeFeatureSource Interface