schGetPropertyDisplay
schGetPropertyDisplay( ?objectd_object[?nameS_name] ) =>l_textDisplays/s_visibility/ nil
Description
Returns the attribute, property, and parameter textDisplays enabled for an object.
Arguments
|
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
|
If |
|
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
Return to top