ScrSelectDcConnectedNets

Selects all nets and RLCs which form a connection to the specified net.
UI Command:   None.
Syntax:   obj.ScrSelectDcConnectedNets(<netNameList>)
Parameters:  

ARRAY netNameList

Return Value:  

BOOL

  • 0 – Failure
  • 1 – Success
VB Example:  

dim netNameList

netNameList(0)="VCC"

netNameList(1)="GND"

netNameList(2)="Heg"

netNameList(3)="NET-1"

netNameList(4)="NET-2"

netNameList(5)="PWR"

outcome = obj.ScrSelectDcConnectedNets(netNameList)

IPY Example:  

oDoc.ScrSelectDcConnectedNets(['VCC','GND','Heq','NET-1','NET-2','PWR'])