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

schGetAllIgnoreProps

schGetAllIgnoreProps( 
)
=> l_list / nil

Description

Returns a disembodied property list for all the ignore properties that are currently registered. You can view the set of registered ignore properties set on the Ignore Properties tab by clicking OptionsEditor in the schematic window.

Arguments

None

Value Returned

l_list

A disembodied property list that contains all the information about the ignore properties, such as property name, prompt name, type, value, and a flag to determine whether a particular ignore property is enabled or not.

Examples

schGetAllIgnoreProps()

Returns the following list:

((nil name "ignore" prompt "ignore"
    type "boolean" value "TRUE" enabled
    nil
    ) 
    (nil name "lvsIgnore" prompt "lvsIgnore"
    type "boolean" value "TRUE" enabled
    nil
    ) 
    (nil name "nlIgnore" prompt "nlIgnore"
    type "string" value "spectre" enabled
    nil
    )
)

Return to top
 ⠀
X