schHiFind
schHiFind( [ ?propNamet_propName] [ ?condOpt_condOp] [ ?propValuet_propValue] ) => t
Description
Finds objects that match specified search criteria in a schematic or symbol view. You can specify the object filter as well as a property name or value expression that matches the objects. Usable when editing schematics or symbols. Matching is supported only for strings, integers, floating-point numbers, and time. Other property types are not supported.
The schHiFind function searches through the schematic or symbol cellview for objects that match the t_propName, t_condOp, and t_propValue arguments. It highlights the first object that matches the search criteria and opens the Schematic Find form.
If t_propName is master, t_propValue must be libName cellName viewName (separated by spaces). Wildcards are not supported for the master property.
schVerboseFind environment variable which can be used to control the messages output in the CIW and CDS.log file when find criteria has not been met.Arguments
Value Returned
Examples
Displays the options form with t_propName set to name, t_condOp set to ==, and t_propValue set to I1. All objects that have name set to I1 are added to the list. The first one is highlighted on the screen.
schHiFind( "name" "==" "I1" )
Related Topics
Return to top