schHiSelectByProperty
schHiSelectByProperty( [ ?selectt_select] [ ?propNamet_propName] [ ?condOpt_condOp] [ ?propValuet_propValue] ) => t
Description
Adds objects that match specified search criteria in a schematic or symbol view to the selected set or removes objects that match specified search criteria in a schematic or symbol view from the selected set. Usable when editing schematics or symbols. Supports only selection of strings, integers, floating-point numbers, and time. This function does not support other property types.
Searches the schematic or symbol cellview for objects that match the t_propName, t_condOp, and t_propValue arguments.
If no arguments are specified, the Select By Property form appears.
Arguments
Value Returned
Examples
Displays the options form with t_propName set to instName, t_condOp set to ==, and t_propValue set to I1. All objects that have names set to I1 are added to the selected set.
schHiSelectByProperty( "select" "instName" "==" "I1" )
Displays the options form with t_propName set to instName, t_condOp set to ==, and t_propValue set to I1. All objects in the selected set that have names set to I1 are removed from the selected set.
schHiSelectByProperty( "deselect" "instName" "==" "I1" )
Return to top