SchCntrGraphic (Object)

Manage the graphical representation of a schematic connector.

Methods


Sub AddGraphicalPrimitive( iGRRToAdd, iGRR)
Add a graphical primitive to a connector.
Parameters:
iGRRToAdd
The connector graphical primitive to be added to the connector.
iGRR
The component or route graphical representation that points to the connector graphical primitive.
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).
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.
Example:
 
 Dim objThisIntf As SchCntrGraphic
 Dim objArg1 As SchGRR
  ...
 objThisIntf.RemoveGraphicalPrimitiveobjArg1