ScrSanitizeNets
| Runs the Sanitize Layout operation on specified nets. | |
| UI Command: | Tools > Sanitize Layout. |
| Syntax: | obj.ScrSanitizeNets(<netNameList>)
|
| Parameters: |
ARRAY netNameList (containing strings) |
| Return Value: |
BOOL:
|
| VB Example: |
dim netNameList(2) netNameList(0) = "NET-1" netNameList(1) = "NET-2" netNameList(2) = "NET-3" outcome = obj.ScrSanitizeNets(netNameList) |
| IPY Example: |
oDoc.ScrSanitizeNets(['NET-1','NET-2','NET-3']) |