All Frameworks  Object Hierarchy  This Framework  Indexes   

SchCompFlow (Object)

Manage the internal flow of a schematic component.

Method Index

AddInternalFlowSpecifyGRR
Add an internal flow to a component.
AddInternalFlow
Add an internal flow to a component.
ListInternalFlows
List all internal flow objects of a component.
RemoveInternalFlow
Remove an internal flow from a component.

Methods


o Func AddInternalFlowSpecifyGRR( iLFlowCntrs,
iLOwnerGRR) As
Add an internal flow to a component. Specifying which graphical images the connector graphics are on.
Parameters:
iLFlowCntrs
List of connectors (2) to be connected by the flow. (members should be CATISchAppConnector interface pointer)
iLOwnerImages
List of CATISchGRRComp interface pointers
oInternalFlowAdded
Internal flow object added/created (CATISchInternalFlow interface pointer).
Example:
 Dim objThisIntf As SchCompFlow
 Dim objArg1 As SchListOfObjects
 Dim objArg2 As SchListOfObjects
 Dim objArg3 As SchInternalFlow
  ...
 Set objArg3 = objThisIntf.AddInternalFlowSpecifyGRR(objArg1,objArg2)
 
o Func AddInternalFlow( iLFlowCntrs) As
Add an internal flow to a component.
Parameters:
iLFlowCntrs
List of connectors (2) to be connected by the flow. (members should be CATISchAppConnector interface pointer)
oInternalFlowAdded
Internal flow object added/created (CATISchInternalFlow interface pointer).
Example:
 Dim objThisIntf As SchCompFlow
 Dim objArg1 As SchListOfObjects
 Dim objArg2 As SchInternalFlow
  ...
 Set objArg2 = objThisIntf.AddInternalFlow(objArg1)
 
o Func ListInternalFlows() As
List all internal flow objects of a component.
Parameters:
oLInternalFlow
A list of internal flow objects (members are CATISchInternalFlow interface pointers).
Example:
 Dim objThisIntf As SchCompFlow
 Dim objArg1 As SchListOfObjects
  ...
 Set objArg1 = objThisIntf.ListInternalFlows
 
o Sub RemoveInternalFlow( iInternalFlowToRemove)
Remove an internal flow from a component.
Parameters:
iInternalFlowToRemove
Internal flow object to be removed.
Example:
 Dim objThisIntf As SchCompFlow
 Dim objArg1 As SchInternalFlow
  ...
 objThisIntf.RemoveInternalFlowobjArg1
 

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