hm_morph_getdomainhandles

Returns the handle IDs for the specified domain.

Syntax

hm_morph_getdomainhandles domain_id

Type

HyperMesh Tcl Query

Description

Returns the handle IDs for the specified domain.

Inputs

domain_id
The ID of the domain to query.

Example

To get the handle IDs for a domain with ID 2:

hm_morph_getdomainhandles 2

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}