schHiSRC
schHiSRC(
[ ?action t_action ]
)
=> t
Description
Sets schematic rules checker (SRC) options, and runs the schematic rules checker. Usable only when editing schematics.
If you set t_action to editOptions, a form appears on which you can modify the settings of the various schematic rules checks. If online schematic rules checking is inactive, you can also specify run and editOptionsAndRun.
If you set t_action to run, the schematic rules checker is run with the current option settings on the current schematic. If you set t_action to editOptionsAndRun, a form appears on which you can change the rules options.
When all the values have been specified, the schematic rules checker is run on the current schematic. If you do not specify t_action or you specify it as nil, the function behaves as if you specified editOptionsAndRun.
The checks that you run are determined by ignored, warning (default), and error values.
The check is run if the severity is either warning or error. If you set the severity to ignored, that particular schematic rules check is not performed.
All markers generated by this check are indicated with a source of SRC. A dialog box displays the total number of errors and warnings detected when the schematic rules checker has completed.
You must correct detected errors before the connectivity in the schematic is validated.
Arguments
|
Edits the options, runs the schematic rules checker, or both; must be enclosed in quotation marks. |
Value Returned
Examples
Runs the schematic rules checker when online schematic rules checking is inactive by using the current option settings on the current schematic.
schHiSRC( "run" )
Displays a form where you edit the options, then runs the schematic rules checker on the current schematic.
schHiSRC( "editOptionsAndRun" )
Return to top