pycatia.cat_sch_platform_interfaces.sch_connectable

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_connectable.SchConnectable(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
SchConnectable

Represents schematic objects that can be connected to others.
list_connectors(i_l_cntr_class_filter: SchListOfBSTRs, i_grr: SchGRR) SchListOfObjects

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func ListConnectors(SchListOfBSTRs iLCntrClassFilter,
SchGRR iGRR) As SchListOfObjects

Find all the connectors of this schematic object on a specific graphical
image.

Parameters:

oLCntrClassFilter
A list of all the class types for filtering the output connector
list.
iGRR
Pointer to the graphical image
oLCntrs
A list of connectors included in this connection. (members are
CATISchAppConnector interface pointers).

Example:

Dim objThisIntf As SchConnectable
Dim objArg1 As SchListOfBSTRs
Dim objArg2 As SchGRR
Dim objArg3 As SchListOfObjects
Set objArg3 = objThisIntf.ListConnectors(objArg1,objArg2)
Parameters:
Return type:

SchListOfObjects