• 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 124
  • Views 17835
  • 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
  • archive
    archive over 17 years ago

    I would assume that such a user property would originate from its symbol. So, I will go and open the symbol of this instance and check in Edit->properties->Cellview

    I will turn on the value option for this particular property in question and check and save my symbol. Now, it should be visible for all instances.

    RR


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

    rairaj,

    Thanks for responding.

    I cannot edit the symbol since it is a cell from the stdcell library. So, that option seems tough.

    If I change the 'Display->off' option to 'Display->value' option in Edit Object Properties menu of that instance, then I do see the value getting displayed on the schematic. So, I was thinking that there is a way I can make this possible at the schematic level without editing at the symbol level.

    However, I do not know how to save the preference. I also do not know how can I make it the default Display option for all instances which have a certain value to this property.

    Thanks again.


    Originally posted in cdnusers.org by shubh
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • 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

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