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


ISimpleJunctionFeature.EdgeFeature Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IS > ISimpleJunctionFeature Interface > ISimpleJunctionFeature.EdgeFeature Property
ArcGIS Developer Help

ISimpleJunctionFeature.EdgeFeature Property

The EdgeFeature associated with the specified index value.

[Visual Basic .NET]
Public Function get_EdgeFeature ( _
    ByVal Index As Integer _
) As IEdgeFeature
[C#]
public IEdgeFeature get_EdgeFeature (
    int Index
);
[C++]
HRESULT get_EdgeFeature(
  long Index,
  IEdgeFeature** EdgeFeature
);
[C++]
Parameters
Index [in]

Index is a parameter of type long EdgeFeature [out, retval]
EdgeFeature is a parameter of type IEdgeFeature**

Product Availability

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

Remarks

The EdgeFeature property returns the edge feature connected to the simple junction corresponding to the supplied index value.  The Index parameter is zero-based; if using a for loop to iterate through the edge features of a junction, EdgeFeatureCount - 1 should be the last index accessed.

As with the other properties on ISimpleJunctionFeature the EdgeFeature property should not be used to traverse the geometric network.  The IForwardStar interface on the Network Object Model should be used for traversing the network.

 

See Also

ISimpleJunctionFeature Interface