pycatia.cat_sch_platform_interfaces.sch_zone_graphic

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.cat_sch_platform_interfaces.sch_zone_graphic.SchZoneGraphic(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
SchZoneGraphic

Manage graphical representations of a schematic zone.
add_graphical_representation(i_grr_to_add: SchGRRZone) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub AddGraphicalRepresentation(SchGRRZone 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
Parameters:

i_grr_to_add (SchGRRZone) –

Return type:

None

list_graphical_representations() SchListOfObjects

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func ListGraphicalRepresentations() As SchListOfObjects

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
Return type:

SchListOfObjects

remove_graphical_representation(i_grr_to_remove: SchGRRZone) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub RemoveGraphicalRepresentation(SchGRRZone 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
Parameters:

i_grr_to_remove (SchGRRZone) –

Return type:

None