hm_ce_getresolvedlinkentities
Returns resolved link entity information.
Syntax
hm_ce_getresolvedlinkentities ce_id link_entity_type
Type
HyperMesh Tcl Query Command
Description
Returns the link information for the resolved entities organized per link-index. The output will contain the entity ID if the link-entity is present in current model else it will be 0.
Inputs
- ce_id
- The ID of the connector to query.
- link_entity_type
- The link entity type to query.
Examples
hm_ce_getresolvedlinkentities 7 comps;
output: 1 2
hm_ce_getresolvedlinkentities 7 parts;
output: 0 0
hm_ce_getresolvedlinkentities 7 comps;
output: 1 0
hm_ce_getresolvedlinkentities 7 parts;
output: 0 0
hm_ce_getresolvedlinkentities 7 comps;
output: {1 0} 2
hm_ce_getresolvedlinkentities 7 parts;
output: {0 0} 0
Errors
if { [ catch {command_name...} ] } {
# Handle error
}
Version History
2019