hm_entityminid

Returns the minimum internal ID in use for an entity type.

Syntax

hm_entityminid entity_type ?recalculate?

Type

HyperMesh Tcl Query Command

Description

Returns the minimum internal ID in use for an entity type.

Inputs

entity_type
The type of entity to query.
recalculate
An optional argument, indicating whether the minimum internal ID should be recalculated due to deleted entities. Valid values are:
0 - Do not recalculate.
1 - Recalculate (default).

Example

To get the minimum internal ID for properties:

hm_entityminid props

Errors

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