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 Options – Editor – Ignore Properties tab in the schematic window.
Arguments
|
Name of the property to be searched in the ignore property set. |
Value Returned
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