SchZoneGraphic (Object)

Manage graphical representations of a schematic zone.

Methods


Sub AddGraphicalRepresentation( iGRRToAdd)
Add a graphical representation to a zone.
Parameters:
iGRRToAdd
The graphical representation to be added to the zone.
Example:
 
 Dim objThisIntf As SchZoneGraphic
 Dim objArg1 As SchGRRZone
  ...
 objThisIntf.AddGraphicalRepresentationobjArg1
 
Func ListGraphicalRepresentations() As
List all graphical representations of a zone.
Parameters:
oLGRR
A list of graphical representations (members are CATISchGRRZone interface pointers).
Example:
 
 Dim objThisIntf As SchZoneGraphic
 Dim objArg1 As SchListOfObjects
  ...
 Set objArg1 = objThisIntf.ListGraphicalRepresentations
 
Sub RemoveGraphicalRepresentation( iGRRToRemove)
Remove a graphical representation from a zone.
Parameters:
iGRRToRemove
The graphical representation to be removed from the zone.
Example:
 
 Dim objThisIntf As SchZoneGraphic
 Dim objArg1 As SchGRRZone
  ...
 objThisIntf.RemoveGraphicalRepresentationobjArg1