Re: SKILL Q: Given a Name, How to Select a Pin in LE?
by Riad KACED <riad.kaced@[EMAIL PROTECTED]
>
Apr 23, 2008 at 05:02 PM
Hi Edward,
Once your cv opened, I would propose the following to get the list of
the shape/instance pins in your layout:
instPinsList = setof(x dbGetq(cv instances) x~>pin)
shapePinsList = setof(x dbGetq(cv shapes) x~>pin)
You can then do whatever you want with this list: Match them with the
list you're looking for and then select ?
Hope it help !
Riad.