Model.hm_getmodelcheckcorrectiondisplayname#

Model.hm_getmodelcheckcorrectiondisplayname(check_display_name)#

Returns the correction names for a given check.

Parameters:

check_display_name (hwString) – The GUI display name of the check. This is case sensitive.

Returns:

Example#

Get the correction names for the “ Unused materials “ check#
import hm
import hm.entities as ent

model = hm.Model()

_, result = model.hm_getmodelcheckcorrectiondisplayname(
    check_display_name="Unused materials"
)

print("correctionDisplayName:", result.correctionDisplayName)