*modelcheck_createchecks

Loads a model check config file and creates check and correction entities.

Syntax

*modelcheck_createchecks filename ?add?

Type

HyperMesh Tcl Modify Command

Description

Loads a model check config file and creates check and correction entities.

Inputs

filename
The full path and file name of the config file to load.
add
0 - Only the checks in the new config file will be loaded (default)
1 - The config file is appended onto the existing checks

Examples

To load the config file C:/temp/my_checks.xml:
*modelcheck_createchecks "C:/temp/my_checks.xml"
To append the config file C:/temp/my_checks.xml:
*modelcheck_createchecks "C:/temp/my_checks.xml" 1

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}

Version History

2019