Methods
- Sub AddGraphicalPrimitive( iGRRToAdd, iGRR)
-
Add a graphical primitive to a connector.
- Parameters:
-
- iGRRToAdd
- The connector graphical primitive to be added to the connector. dd>
- iGRR
- The component or route graphical representation that points to the connector graphical primitive. dd>
- Example:
-
Dim objThisIntf As SchCntrGraphic Dim objArg1 As SchGRR Dim objArg2 As SchGRR ... objThisIntf.AddGraphicalPrimitiveobjArg1,objArg2
- Func ListGraphicalPrimitives() As
-
List all graphical primitives of a connector.
- Parameters:
-
- oLGRR
- A list of graphical primitives (members are CATISchGRR interface pointers). dd>
- Example:
-
Dim objThisIntf As SchCntrGraphic Dim objArg1 As SchListOfObjects ... Set objArg1 = objThisIntf.ListGraphicalPrimitives
- Sub RemoveGraphicalPrimitive( iGRRToRemove)
-
Remove a graphical primitive from a connector.
- Parameters:
-
- iGRRToRemove
- The connector graphical primitive to be removed from the connector. dd>
- Example:
-
Dim objThisIntf As SchCntrGraphic Dim objArg1 As SchGRR ... objThisIntf.RemoveGraphicalPrimitiveobjArg1