ArcObjects Library Reference (GeoDatabase)  

INetworkEdge2.QueryCoveredEdge Method

Used to iterate over the edges covered by this edge.

[Visual Basic .NET]
Public Sub QueryCoveredEdge ( _
    ByVal Index As Integer, _
    ByVal Edge As INetworkEdge _
)
[C#]
public void QueryCoveredEdge (
    int Index,
    INetworkEdge Edge
);
[C++]
HRESULT QueryCoveredEdge(
  long Index,
  INetworkEdge* Edge
);
[C++]

Parameters

Index [in]   Index is a parameter of type long Edge [in]

  Edge is a parameter of type INetworkEdge

Product Availability

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

Remarks

Using the CoveredEdgeCount property to find the range of values to use as an index, QueryCoveredEdge is called to iterate over the edges that are covered by this hyperedge.

See Also

INetworkEdge2 Interface