lxUseCell property: how to detect it ?

Discussion in 'Cadence' started by bedoune, Mar 13, 2008.

  1. bedoune

    bedoune 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.
     
    bedoune, Mar 13, 2008
    #1
  2. bedoune

    bedoune Guest

    I got it.
    Just x~>lxUseCell

    thanks

    b.
     
    bedoune, Mar 13, 2008
    #2
  3. 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
     
    Suresh Jeevanandam, Mar 13, 2008
    #3
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.