hm_morph_gethandledomains
Returns the domain IDs for the specified handle.
Syntax
hm_morph_gethandledomains handle_id
Type
HyperMesh Tcl Query
Description
Returns the domain IDs for the specified handle.
Inputs
- handle_id
- The ID of the handle to query.
Example
To get the domain IDs for a handle with ID 2:
hm_morph_gethandledomains 2
Errors
Incorrect usage results in a Tcl error. To
detect errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}