Methods
- Sub AddConnector( iClassType, iGRR, iDb2CntrPosition, oNewSchCntr)
-
Add a connector.
- Parameters:
-
- iClassType
- Class type of the connector to be added. dd>
- iGRR
- The graphical image of the component to add the connector to. If NULL, connector will be added to all representations. dd>
- iDb2CntrPosition
- The position of the connector (optional, it could be NULL). dd>
- oNewSchCntr
- The new Schematic Connector object created. dd>
- Example:
-
Dim objThisIntf As SchCompConnector Dim strVar1 As String Dim objArg2 As SchGRRComp Dim dbVar3(2) As CATSafeArrayVariant Dim objArg4 As SchAppConnector ... objThisIntf.AddConnectorstrVar1,objArg2,dbVar3,objArg4
- Sub AddDynamicConnector( iClassType, iGRR, iDb2CntrPosition, oNewSchCntr)
-
Add a dynamic connector.
- Parameters:
-
- iClassType
- Class type of the connector to be added. dd>
- iGRR
- The graphical image of the component to add the connector to. If NULL, connector will be added to all representations. dd>
- iDb2CntrPosition
- The position of the connector (optional, it could be NULL). dd>
- oNewSchCntr
- The new Schematic Connector object created. dd>
- Example:
-
Dim objThisIntf As SchCompConnector Dim strVar1 As String Dim objArg2 As SchGRRComp Dim dbVar3(2) As CATSafeArrayVariant Dim objArg4 As SchAppConnector ... objThisIntf.AddDynamicConnectorstrVar1,objArg2,dbVar3,objArg4
- Sub RemoveConnector( iGRR, iCntrToRemove)
-
Remove a connector.
- Parameters:
-
- iCntrToRemove
- The schematic connector object to be removed dd>
- iGRR
- The graphical image of the component to remove the connector from. If NULL, connector will be removed from all representations. dd>
- Example:
-
Dim objThisIntf As SchCompConnector Dim objArg1 As SchGRRComp Dim objArg2 As SchAppConnector ... objThisIntf.RemoveConnectorobjArg1,objArg2