Methods
- Sub AddGraphicalPrimitive( iGRRToAdd)
-
Add a graphical primitive to a route.
- Parameters:
-
- iGRRToAdd
- The route graphical primitive to be added to the route. dd>
- 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). dd>
- 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. dd>
- Example:
-
Dim objThisIntf As SchRouteGraphic Dim objArg1 As SchGRRRoute ... objThisIntf.RemoveGraphicalPrimitiveobjArg1