Model.hm_setmodelcheckresultentids#
- Model.hm_setmodelcheckresultentids(display_name, collectionset)#
Sets the entities for the specified Model Check check display name.
- Parameters:
display_name (hwString) – The check display name.
collectionset (CollectionSet) – The collection set containing the collections of input entities.
- Returns:
hwReturnStatus- Status object
Example#
Set the entities for the check named “Unused Materials” and to the entities stored incol_setcollectionset object#import hm import hm.entities as ent model = hm.Model() model.hm_setmodelcheckresultentids( display_name="Unused Materials", collectionset=col_set )