Model.hm_getmodelcheckenttype#

Model.hm_getmodelcheckenttype(display_name)#

Returns the entity type for the specified Model Check check display name.

Parameters:

display_name (hwString) – The check display name.

Returns:

Example#

Get the entity type for the check named “ Unused Materials “#
import hm
import hm.entities as ent

model = hm.Model()

_, result = model.hm_getmodelcheckenttype(display_name="Unused Materials")

print("entityType:", result.entityType)