ArcObjects Library Reference (GeoDatabase)  

INetworkSource.UsesGeometryInConnectivity Property

Indicates if the source object's geometry is used in determining network connectivity.

[Visual Basic .NET]
Public ReadOnly Property UsesGeometryInConnectivity As Boolean
[C#]
public bool UsesGeometryInConnectivity {get;}
[C++]
HRESULT get_UsesGeometryInConnectivity(
  VARIANT_BOOL* usesGeometry
);
[C++]

Parameters

usesGeometry [out, retval]   usesGeometry is a parameter of type VARIANT_BOOL

Product Availability

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

Remarks

The UsesGeometryInConnectivity property indicates whether the geometries of the features in a NetworkSource  are used in determining how its network elements are connected to each other.

For example, the geometries of the features in an EdgeFeatureSource and JunctionFeatureSource are used to determine how the generated edge and junction elements connect to each other.  The UsesGeometryInConnectivity property for these sources is True.

In contrast, the geometries of the features in a TurnFeatureSource are not used in deteriming how the turn elements are associated with the edges and junctions of the network -- the fields of the TurnFeatureSource feature class determine this.  The UsesGeometryInConnectivity property for the TurnFeatureSource is False.

See Also

INetworkSource Interface