*CE_DetailSetUintByMark

Sets an unsigned integer as connector detail for a connector specified by ID.

Syntax

*CE_DetailSetUintByMark markmask detailName uint_val unknownFlag force_storage_flag

Type

HyperMesh Tcl Modify Command

Description

Sets an unsigned integer as connector detail for a connector specified by ID.

Inputs

markmask
Mark containing the connectors to attach details to.
detailName
Name for a user-defined unsigned integer detail.
unit_val
The unsigned integer value for the detail.
unknownFlag
Reserved for future use. Must be set to 0.
force_storage_flag
The flag indicating whether or not to store a user-defined detail.
  • 1 = yes
  • 0 = no

Examples

To set a user-defined unsigned integer detail "test = 2.0" for connectors 1, 2, 3, and 4:
*createmark(connectors, 1) 1, 2, 3, 4
*CE_DetailSetUintByMark(1, "test", 2.0, 0, 1)

There are currently no standard unsigned integer details, only user-defined ones.