Methods
- Func FindPaths( iFromObject, iToObject) As
-
Given a start and end object in the network, this method returns
a list of network objects each representing a path connecting the
the 2 input objects.
- Parameters:
-
- iFromObject
- The connectable to start from. dd>
- iToObject
- The connectable to finish at. dd>
- oLNetworks
- Pointer to a list of networks. (Members are CATISchNetworkAnalysis interface pointers). dd>
- Example:
-
Dim objThisIntf As SchNetworkAnalysis Dim objArg1 As SchAppConnectable Dim objArg2 As SchAppConnectable Dim objArg3 As SchListOfObjects ... Set objArg3 = objThisIntf.FindPaths(objArg1,objArg2)
- Func ListExtremityObjects() As
-
List the extremity objects of the network.
- Parameters:
-
- oLExtremityObjs
- Pointer to a list of extremity objects of the network (Members are CATISchAppConnectable interface pointers). dd>
- Example:
-
Dim objThisIntf As SchNetworkAnalysis Dim objArg1 As SchListOfObjects ... Set objArg1 = objThisIntf.ListExtremityObjects
- Func ListNetworkObjects() As
-
List the connected objects in the network.
- Parameters:
-
- oLNetworkObjs
- Pointer to a list of all connected objects in the network. (Members are CATISchAppConnectable interface pointers) dd>
- Example:
-
Dim objThisIntf As SchNetworkAnalysis Dim objArg1 As SchListOfObjects ... Set objArg1 = objThisIntf.ListNetworkObjects