All Frameworks  Object Hierarchy  This Framework  Indexes   

SchNetworkAnalysis (Object)

Represents a schematic network.

Method Index

FindPaths
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.
ListExtremityObjects
List the extremity objects of the network.
ListNetworkObjects
List the connected objects in the network.

Methods


o 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.
iToObject
The connectable to finish at.
oLNetworks
Pointer to a list of networks. (Members are CATISchNetworkAnalysis interface pointers).
Example:
 Dim objThisIntf As SchNetworkAnalysis
 Dim objArg1 As SchAppConnectable
 Dim objArg2 As SchAppConnectable
 Dim objArg3 As SchListOfObjects
  ...
 Set objArg3 = objThisIntf.FindPaths(objArg1,objArg2)
 
o 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).
Example:
 Dim objThisIntf As SchNetworkAnalysis
 Dim objArg1 As SchListOfObjects
  ...
 Set objArg1 = objThisIntf.ListExtremityObjects
 
o 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)
Example:
 Dim objThisIntf As SchNetworkAnalysis
 Dim objArg1 As SchListOfObjects
  ...
 Set objArg1 = objThisIntf.ListNetworkObjects
 

Copyright © 2003, Dassault Systèmes. All rights reserved.