pycatia.cat_sch_platform_interfaces.sch_cntr_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_cntr_graphic.SchCntrGraphic(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
SchCntrGraphic

Manage the graphical representation of a schematic connector.
add_graphical_primitive(i_grr_to_add: SchGRR, i_grr: SchGRR) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub AddGraphicalPrimitive(SchGRR iGRRToAdd,
SchGRR iGRR)

Add a graphical primitive to a connector.

Parameters:

iGRRToAdd
The connector graphical primitive to be added to the connector.

iGRR
The component or route graphical representation that points to the
connector graphical primitive.

Example:

Dim objThisIntf As SchCntrGraphic
Dim objArg1 As SchGRR
Dim objArg2 As SchGRR
objThisIntf.AddGraphicalPrimitiveobjArg1,objArg2
Parameters:
Return type:

None

list_graphical_primitives() SchListOfObjects

Note

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

List all graphical primitives of a connector.

Parameters:

oLGRR
A list of graphical primitives (members are CATISchGRR interface
pointers).

Example:

Dim objThisIntf As SchCntrGraphic
Dim objArg1 As SchListOfObjects
Set objArg1 = objThisIntf.ListGraphicalPrimitives
Return type:

SchListOfObjects

remove_graphical_primitive(i_grr_to_remove: SchGRR) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub RemoveGraphicalPrimitive(SchGRR iGRRToRemove)

Remove a graphical primitive from a connector.

Parameters:

iGRRToRemove
The connector graphical primitive to be removed from the connector.


Example:



Dim objThisIntf As SchCntrGraphic
Dim objArg1 As SchGRR
objThisIntf.RemoveGraphicalPrimitiveobjArg1
Parameters:

i_grr_to_remove (SchGRR) –

Return type:

None