hm_ce_type
Returns the type of a connector entity.
Syntax
hm_ce_type id
Type
HyperMesh Tcl Query Command
Description
Returns the type of a connector entity.
Return values include point/node, line, seam and area.
Inputs
- id
- The ID of the connector to query.
Example
To get the type of connector ID 2:
hm_ce_type 2
Errors
Incorrect usage results in a Tcl error. To detect
errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}