lxUseCell property: how to detect it ?

Guest
Hi,

I would like to write a skill which will warn me if property
"lxUseCell" is present somewhere in my schematic.

In my CIW, I tried

SchemContents = geGetWindowCellView()~>instances
x = nthelem(1 SchemContents)
x~>master~>??
x~>??

and then i read the results ... but nothing appears about "lxUseCell"

so, how to detect this property ?

Thanks for your help,

b.
 
b,

This may help

cv = geGetWindowCellView()
foreach(inst cv~>instances
when( dbFindProp(inst "lxUseCell")
warn(sprintf(nil "Found lxUseCell property on instances %s" inst~>name)
)
)

-
Suresh
bedoune@gmail.com wrote:
Hi,

I would like to write a skill which will warn me if property
"lxUseCell" is present somewhere in my schematic.

In my CIW, I tried

SchemContents = geGetWindowCellView()~>instances
x = nthelem(1 SchemContents)
x~>master~>??
x~>??

and then i read the results ... but nothing appears about "lxUseCell"

so, how to detect this property ?

Thanks for your help,

b.
 

Welcome to EDABoard.com

Sponsor

Back
Top