pycatia.cat_plant_ship_interfaces.psp_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_plant_ship_interfaces.psp_group.PSPGroup(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
PspGroup

Represent the Group.
Role: It manages group members in making logical relationship.
add_member(i_groupable: PSPGroupable) None

Note

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

Adds a member to the group.

Parameters:

iGroupable
Member to add

Example:

Dim objThisIntf As PspGroup
Dim objArg1 As PspGroupable
objThisIntf.AddMember objArg1
Parameters:

i_groupable (PSPGroupable) –

Return type:

None

property members: PSPListOfObjects

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property Members() As PspListOfObjects (Read Only)

Returns a list of Members of the Group.

Example:

Dim objThisIntf As PspGroup
Dim objArg1 As PspListOfObjects
Set ObjArg1 = objThisIntf.Members
Return type:

PSPListOfObjects

remove_member(i_groupable: PSPGroupable) None

Note

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

Removes a member from the group.

Parameters:

iGroupable
a member to be removed

Example:

Dim objThisIntf As PspGroup
Dim objArg1 As PspGroupable
objThisIntf.RemoveMember objArg1
Parameters:

i_groupable (PSPGroupable) –

Return type:

None