SchGapDisplay (Object)

Manage the graphical representation of a schematic route.

Methods


Sub IsGapShown( oBYes)
Query whether gaps are shown (gap attributes exist).
Parameters:
oBYes
If TRUE, then gaps are shown (gap attributes exist). If FALSE, then gaps are not shown (gap attributes do not exist).
Example:
 
 Dim objThisIntf As SchGapDisplay
 Dim bVar1 As boolean
  ...
 objThisIntf.IsGapShownbVar1
 
Sub SetGap( iLUKRoutes)
Add gap display attributes on the route.
Parameters:
iLUKRoutes
A list of routes to be processed, default is NULL (if NULL, then all routes in model are processed). Members are CATISchRoute interface pointers.
Example:
 
 Dim objThisIntf As SchGapDisplay
 Dim objArg1 As SchListOfObjects
  ...
 objThisIntf.SetGapobjArg1
 
Sub UnsetGap( iLUKRoutes)
Remove gap display attributes on the route. A list of routes to be processed, default is NULL (if NULL, then all routes in model are processed). Members are CATISchRoute interface pointers.
Example:
 
 Dim objThisIntf As SchGapDisplay
 Dim objArg1 As SchListOfObjects
  ...
 objThisIntf.UnsetGapobjArg1