SchRouteGraphic (Object)

Manage graphical primitives representing a schematic route.

Methods


Sub AddGraphicalPrimitive( iGRRToAdd)
Add a graphical primitive to a route.
Parameters:
iGRRToAdd
The route graphical primitive to be added to the route.
Example:
 
 Dim objThisIntf As SchRouteGraphic
 Dim objArg1 As SchGRRRoute
  ...
 objThisIntf.AddGraphicalPrimitiveobjArg1
 
Func ListGraphicalPrimitives() As
List all graphical primitives of a route.
Parameters:
oLGRR
A list of graphical primitives (members are CATISchGRRRoute interface pointers).
Example:
 
 Dim objThisIntf As SchRouteGraphic
 Dim objArg1 As SchListOfObjects
  ...
 Set objArg1 = objThisIntf.ListGraphicalPrimitives
 
Sub RemoveAllGraphicalPrimitives()
Remove all graphical primitives of a route, including alternate graphical primitives.
Example:
 
 Dim objThisIntf As SchRouteGraphic
  ...
 objThisIntf.RemoveAllGraphicalPrimitives
 
Sub RemoveGraphicalPrimitive( iGRRToRemove)
Remove a graphical primitive from a route.
Parameters:
iGRRToRemove
The route graphical primitive to be removed from the component.
Example:
 
 Dim objThisIntf As SchRouteGraphic
 Dim objArg1 As SchGRRRoute
  ...
 objThisIntf.RemoveGraphicalPrimitiveobjArg1