SchAppZone (Object)

Manage a schematic zone.

Methods


Sub AppAddZoneMember( 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
 
Func AppListZoneMembers() As
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
 
Sub AppRemoveZoneMember( 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