Methods
- Sub AppAddConnector( iCntrToAdd)
-
Add a connector.
- Parameters:
-
- iCntrToAdd
- The Application Connector to be added to the connection dd>
- Example:
-
Dim objThisIntf As SchAppConnection Dim objArg1 As SchAppConnector ... objThisIntf.AppAddConnectorobjArg1
- Sub AppListConnectables( iLCntbleClassFilter, oLCntbles, oLCntrs)
-
Find all the application object connected to this connection through
their connectors.
- Parameters:
-
- oLCntrClassFilter
- A list of all the class types for filtering the output application objects list. dd>
- oLCntbles
- A list of application objects connected to this connection. (members are CATISchAppConnectable interface pointers). dd>
- oLCntrs
- A list of connectors through which this connection is made. (members are CATISchAppConnector interface pointers). dd>
- Example:
-
Dim objThisIntf As SchAppConnection Dim objArg1 As SchListOfBSTRs Dim objArg2 As SchListOfObjects Dim objArg3 As SchListOfObjects ... objThisIntf.AppListConnectablesobjArg1,objArg2,objArg3
- Func AppListConnectors( iLCntrClassFilter) As
-
Find all the connectors included in this connection.
- Parameters:
-
- oLCntrClassFilter
- A list of all the class types for filtering the output connector list. dd>
- oLCntrs
- A list of connectors included in this connection. (members are CATISchAppConnector interface pointers). dd>
- Example:
-
Dim objThisIntf As SchAppConnection Dim objArg1 As SchListOfBSTRs Dim objArg2 As SchListOfObjects ... Set objArg2 = objThisIntf.AppListConnectors(objArg1)
- Sub AppRemoveConnector( iCntrToRemove)
-
Remove a connector.
- Parameters:
-
- iCntrToRemove
- The Application Connector to be removed dd>
- Example:
-
Dim objThisIntf As SchAppConnection Dim objArg1 As SchAppConnector ... objThisIntf.AppRemoveConnectorobjArg1