• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC Design
  3. How to display Object Properties on schematics?

Stats

  • Locked Locked
  • Replies 3
  • Subscribers 128
  • Views 19046
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to display Object Properties on schematics?

archive
archive over 17 years ago

    Hi,

I am new to Cadence Virtuoso Schematic Editor. I had a quick question.

I have a user defined property on instances in my schematics. If I select the instance and press key 'q', it gives me a pop-up menu for 'Edit Object Properties'. There, I do see the property listed in the User Property section and having a Local Value assigned to it.

However, the Display option next to it is off by default. I was wondering if there is a way to turn it on 'only' for this very property by default so that I don't have to go and change the 'Display->off' option to 'Display->value' by hand for every instance.

Any help would be sincerely appreciated.

Thank you.



Originally posted in cdnusers.org by shubh
  • Cancel
Parents
  • archive
    archive over 17 years ago

    Load this code:

    procedure(CCSPropDisplay(cellname propName)
    let( (cv prop)
    cv = geGetWindowCellView()
    foreach(inst cv~>instances
    if(inst~>cellName == cellname
    then
    if(prop=dbFindProp(inst propName)
    then
    ;;check for existence of assocTextDisplay
    unless(prop~>assocTextDisplays
    dbCreateTextDisplay(prop inst list("device" "annotate")
    list("justify" "orient")
    list(xCoord(lowerLeft(inst~>bBox)) yCoord(upperRight(inst~>bBox)))
    "centerCenter" "R0" "stick" 0.0625)
    printf("\nCreated textDisplay Object")
    )
    prop~>assocTextDisplays~>isVisible =t
    )
    ) ;if
    ; dbSave(cv)
    ) ;foreach
    ) ;let
    ) ;proc


    Open your cellview. Call:

    CCSpropDisplay("mycell" "myprop")

    Replace "mycell" with actual cell whose props you are looking at and myprop is the property name.

    RR


    Originally posted in cdnusers.org by rairaj
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • archive
    archive over 17 years ago

    Load this code:

    procedure(CCSPropDisplay(cellname propName)
    let( (cv prop)
    cv = geGetWindowCellView()
    foreach(inst cv~>instances
    if(inst~>cellName == cellname
    then
    if(prop=dbFindProp(inst propName)
    then
    ;;check for existence of assocTextDisplay
    unless(prop~>assocTextDisplays
    dbCreateTextDisplay(prop inst list("device" "annotate")
    list("justify" "orient")
    list(xCoord(lowerLeft(inst~>bBox)) yCoord(upperRight(inst~>bBox)))
    "centerCenter" "R0" "stick" 0.0625)
    printf("\nCreated textDisplay Object")
    )
    prop~>assocTextDisplays~>isVisible =t
    )
    ) ;if
    ; dbSave(cv)
    ) ;foreach
    ) ;let
    ) ;proc


    Open your cellview. Call:

    CCSpropDisplay("mycell" "myprop")

    Replace "mycell" with actual cell whose props you are looking at and myprop is the property name.

    RR


    Originally posted in cdnusers.org by rairaj
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information