Methods
- 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) dd>
- oInternalFlowAdded
- Internal flow object added/created (CATISchInternalFlow interface pointer). dd>
- Example:
-
Dim objThisIntf As SchCompFlow Dim objArg1 As SchListOfObjects Dim objArg2 As SchInternalFlow ... Set objArg2 = objThisIntf.AddInternalFlow(objArg1)
- 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) dd>
- iLOwnerImages
- List of CATISchGRRComp interface pointers dd>
- oInternalFlowAdded
- Internal flow object added/created (CATISchInternalFlow interface pointer). dd>
- Example:
-
Dim objThisIntf As SchCompFlow Dim objArg1 As SchListOfObjects Dim objArg2 As SchListOfObjects Dim objArg3 As SchInternalFlow ... Set objArg3 = objThisIntf.AddInternalFlowSpecifyGRR(objArg1,objArg2)
- Func ListInternalFlows() As
-
List all internal flow objects of a component.
- Parameters:
-
- oLInternalFlow
- A list of internal flow objects (members are CATISchInternalFlow interface pointers). dd>
- Example:
-
Dim objThisIntf As SchCompFlow Dim objArg1 As SchListOfObjects ... Set objArg1 = objThisIntf.ListInternalFlows
- Sub RemoveInternalFlow( iInternalFlowToRemove)
-
Remove an internal flow from a component.
- Parameters:
-
- iInternalFlowToRemove
- Internal flow object to be removed. dd>
- Example:
-
Dim objThisIntf As SchCompFlow Dim objArg1 As SchInternalFlow ... objThisIntf.RemoveInternalFlowobjArg1