Model.hm_me_childrenget#
- Model.hm_me_childrenget(id)#
Returns the first-level children part IDs.
- Parameters:
id (int) – The ID of the part to query.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:childrenPart (EntityList)
Example#
Get the first - level children parts for a part with ID 10#import hm import hm.entities as ent model = hm.Model() _,result = model.hm_me_childrenget(id=10) print("childrenPart", result.childrenPart)