ArcObjects Library Reference (GeoDatabase)  

ISimpleJunctionFeature.EID Property

The logical network element ID of this junction.

[Visual Basic .NET]
Public ReadOnly Property EID As Integer
[C#]
public int EID {get;}
[C++]
HRESULT get_EID(
  long* ElementID
);
[C++]

Parameters

ElementID [out, retval]   ElementID is a parameter of type long

Product Availability

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

Remarks

The GetEID property returns the network element associated with the simple junction.  Since simple junctions correspond to a single element in the logical network, there is only one EID associated with a simple junction.  As with the other properties on ISimpleJunctionFeature the GetEID 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.

If the simple junction feature does not have an EID, a value of 0 will be returned.

See Also

ISimpleJunctionFeature Interface