hm_setmodelcheckcorrectionstatus

Sets the applied status for the specified Model Check correction display name.

Syntax

hm_setmodelcheckcorrectionstatus display_name display_name_correction status

Type

HyperMesh Tcl GUI Command

Description

Sets the applied status for the specified Model Check correction display name.

Inputs

display_name
The check display name.
display_name_correction
The correction display name.
status
  • 0 - Not applied
  • 1 - Applied
  • 2 - Partially applied

Example

To set the applied status for the check named "Unused Materials" and correction named "Delete Unused Materials" to applied (1):

hm_setmodelcheckcorrectionstatus "Unused Materials" "Delete Unused Materials" 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

11.0.101

2019 - Added new status value 2.