This document is archived and information here might be outdated. Recommended version. |
Indicator interface that identifies the junction flags on the network.
Junction flags are the beginning points of traces on junction feature in a network. Use the IJunctionFlag interface to create a flag on a junction element in your network.
Classes | Description |
---|---|
JunctionFlag | A container for defining a network flag on a junction element for a trace flow solver. |
For more information on network flags see the NetFlag object.
Use the following code to create a junction flag on a junction:
INetFlag junctionFlag = new JunctionFlagClass() as INetFlag;
junctionFlag.UserClassID = userClassID;
junctionFlag.UserID = userID;
junctionFlag.UserSubID = userSubID;
To create a flag on an edge element use the EdgeFlag object.
Use the following code to create a junction flag on a junction:
Dim junctionFlag As INetFlag = New JunctionFlag
junctionFlag.UserClassID = userClassID
junctionFlag.UserID = userID
junctionFlag.UserSubID = userSubID
To create a flag on an edge element use the EdgeFlag object.
INetFlag Interface | IJunctionFlag Interface | IEdgeFlag Interface