hm_ce_state

Returns the current connector state (unrealized, realized or failed).

Syntax

hm_ce_state ce_id

Type

HyperMesh Tcl Query Command

Description

Returns the current connector state (unrealized, realized or failed).

Inputs

ce_id
The ID of the connector.

Example

To find the state of a set of connectors on mark and store them in a list:

*createmark connectors 1 "displayed"
set ceList [ hm_getmark connectors 1 ];
foreach ce_id $ceList {
     lappend ce_states [ hm_ce_state $ce_id ];
}

Errors

None.