*CE_DetailSetDoubleByMark
Sets a double connector detail for a mark of connectors.
Syntax
*CE_DetailSetDoubleByMark mark_id detail_name double_value reserved force_storage
Type
HyperMesh Tcl Modify Command
Description
Sets a double connector detail for a mark of connectors.
Inputs
- mark_id
- The ID of mark containing the connectors to update. Valid values are 1 and 2.
- detail_name
- The name of the standard double detail, or user-defined double detail to update. See *CE_DetailSetDouble for valid details.
- double_value
- The double value to update for the detail.
- reserved
- Reserved for future use. Must be set to 0.
- force_storage
- 0 - Do not store user-defined detail.
Examples
*createmark connectors 1 1 2 3
*CE_DetailSetDoubleByMark 1 ce_tolerance 10.0 0 0
*createmark connectors 1 2 3
*CE_DetailSetDoubleByMark 1 "test" 5.0 0 1
Errors
if { [ catch {command_name...} ] } {
# Handle error
}