Model.hm_getmodelcheckresultentids#

Model.hm_getmodelcheckresultentids(display_name)#

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

Parameters:

display_name (hwString) – The check display name.

Returns:

Example#

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

model = hm.Model()

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

print("entityIdList:", result.entityIdList)