hm_aic_getpartids
Returns IDs of part entities added in all labels in the classifier.
Syntax
hm_aic_getpartids classifier
Type
HyperMesh Tcl Query Command
Description
Returns IDs of part entities added in all labels in the classifier in form of a list of
lists: { {<label1> {<id1> <id2> … <idN>}} {<label2> {<id> <id2>
… <idN>}} {<label3> {<id> <id2> … <idN>}} }
Inputs
- classifier
- The name of the classifier.
Examples
To get all parts added in labels in the classifier
CarDemo:
set label_ids [ hm_aic_getpartids CarDemo ]
Errors
Incorrect usage results in a Tcl error. To detect
errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}
Version History
2025