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

schFindIgnorePropByName

schFindIgnorePropByName( 
t_name 
)
=> l_list / nil

Description

Searches for an ignore property in the registered property set. You can view the registered ignore property set by clicking OptionsEditorIgnore Properties tab in the schematic window.

Arguments

t_name

Name of the property to be searched in the ignore property set.

Value Returned

l_list

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

nil

The specified property is not found in the ignore property set.

Examples

schFindIgnorePropByName( "nlIgnore" )

It returns the following list if this property exists in the registered properties:

(nil name "nlIgnore" prompt "nlIgnore"
type "string" value "spectre" enabled
nil
)

If the searched property does not exists in the registered ignore properties, it returns nil.

schFindIgnorePropByName( "nlAction" ) ==> nil

Return to top
 ⠀
X