Product Documentation
Virtuoso Schematic Editor SKILL Functions Reference
Product Version IC23.1, November 2023

schGetPropertyDisplay

schGetPropertyDisplay( 
?object d_object
[?name S_name]
)
=> l_textDisplays / s_visibility / nil

Description

Returns the attribute, property, and parameter textDisplays enabled for an object.

Arguments

?object d_object

The object whose display characteristics you want to view.

[?name S_name]

Name of the element of d_object whose display characteristics you want to view. If this argument is not specified, the function returns all available textDisplays of d_object.

Return Value

l_textDisplays

A list of the requested textDisplays.

s_visibility

If d_object is a textDisplay, s_visibility is a symbol representing the visibility of the textDisplay.

nil

If the requested textDisplays could not be found.

Examples

Converts all ‘name textDisplays to ‘both

foreach(td schGetPropertyDisplay(?object inst)
when(schGetPropertyDisplay(?object td) == ‘name
schSetPropertyDisplay(?object td ‘both)
)
)

Repositions a displayed property.

when(tds = schGetPropertyDisplay(?object inst ?name "libName")
td~>xy = 1.0:2.0
)

Related Topics

schSetPropertyDisplay


Return to top
 ⠀
X