SchComponentGroup (Object)

Represents a temporary group of schematic objects for component placement.

Methods


Sub AddMember( 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
 
Func ListMembers() As
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
 
Sub RemoveMember( 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