pycatia.cat_sch_platform_interfaces.sch_component_group

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_component_group.SchComponentGroup(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
SchComponentGroup

Represents a temporary group of schematic objects for component
placement.
add_member(i_cntbl_to_add: SchAppConnectable) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub AddMember(SchAppConnectable iCntblToAdd)

Add a member to the component group.

Parameters:

iCntblToAdd
The application connectable to be added to the group

Example:

Dim objThisIntf As SchComponentGroup
Dim objArg1 As SchAppConnectable
objThisIntf.AddMemberobjArg1
Parameters:

i_cntbl_to_add (SchAppConnectable) –

Return type:

None

list_members() SchListOfObjects

Note

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

List all connectable members in the group.

Parameters:

oLGRR
A list of connectables.

Example:

Dim objThisIntf As SchComponentGroup
Dim objArg1 As SchListOfObjects
Set objArg1 = objThisIntf.ListMembers
Return type:

SchListOfObjects

remove_member(i_cntbl_to_remove: SchAppConnectable) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub RemoveMember(SchAppConnectable iCntblToRemove)

Remove a member to the component group.

Parameters:

iCntbleToRemove
The application connectable to be removed from the group

Example:

Dim objThisIntf As SchComponentGroup
Dim objArg1 As SchAppConnectable
objThisIntf.RemoveMemberobjArg1
Parameters:

i_cntbl_to_remove (SchAppConnectable) –

Return type:

None