schSetPropertyDisplay
schSetPropertyDisplay( ?objectd_object[?nameS_name] ?visibilityS_visibility) =>l_textDisplays/ nil
Description
Shows or hides textDisplays containing the name and value of the attribute, property, or parameter of an object. TextDisplay locations are chosen automatically to avoid overlaps with other textDisplays. For more information, see schGetPropertyDisplay and dbCreateTextDisplay.
Arguments
Return Value
|
A list of existing or newly created textDisplay objects that display the requested property. Usually, there is only one such textDisplay. |
|
Examples
Displays the favorite items for an instance
schSetPropertyDisplay(?object inst
?name "name"
?visibility 'both)
schSetPropertyDisplay(?object inst
?name "cellName"
?visibility 'value)
schSetPropertyDisplay(?object inst
?name "vdd"
?visibility 'both)
schSetPropertyDisplay(?object inst
?name "model"
?visibility 'value)
Turns on all netSet properties for an instance.
foreach(netSet setof(prop
inst->prop
prop->valueType == "netSet")
schSetPropertyDisplay(?object inst
?name netSet->name
?visibility 'both)
)
Switches off all displayed properties on an instance
schSetPropertyDisplay(?object inst ?visibility 'off)
Permanently removes all 'off displayed properties
foreach(td schGetPropertyDisplay(?object inst)
when(schGetPropertyDisplay(?object td) == 'off
schDelete(td)
)
)
Related Topics
Return to top