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:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:entityIdList (numpy.ndarray)
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)