pycatia.cat_sch_platform_interfaces.sch_app_zone

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_app_zone.SchAppZone(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
SchAppZone

Manage a schematic zone.
app_add_zone_member(i_app_cntbl_to_add: SchAppConnectable) None

Note

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

Add an application connectable object to the zone as
member.

Parameters:

iAppCntblToAdd
The application connectable object to be added to the zone.

Example:

Dim objThisIntf As SchAppZone
Dim objArg1 As SchAppConnectable
objThisIntf.AppAddZoneMemberobjArg1
Parameters:

i_app_cntbl_to_add (SchAppConnectable) –

Return type:

None

app_list_zone_members() SchListOfObjects

Note

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

List all members of an application zone.

Parameters:

oLAppCntbl
A list of zone members (application connectables).

Example:

Dim objThisIntf As SchAppZone
Dim objArg1 As SchListOfObjects
Set objArg1 = objThisIntf.AppListZoneMembers
Return type:

SchListOfObjects

app_remove_zone_member(i_app_cntbl_to_remove: SchAppConnectable) None

Note

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

Remove an application connectable object to the zone as
member.

Parameters:

iAppCntblToRemove
The application connectable object to be removed to the zone.

Example:

Dim objThisIntf As SchAppZone
Dim objArg1 As SchAppConnectable
objThisIntf.AppRemoveZoneMemberobjArg1
Parameters:

i_app_cntbl_to_remove (SchAppConnectable) –

Return type:

None