*CE_DetailDeleteByMark

Delete connector details (stored in connector metadata) from connectors specified by mark.

Syntax

*CE_DetailDeleteByMark markmask detailType detailName unknownFlag

Type

HyperMesh Tcl Modify Command

Description

Delete connector details (stored in connector metadata) from connectors specified by mark.

Inputs

markmask
Mark containing the connectors to delete details from.
detailType
Detail type to delete:
int
uint
double
string
triple
detailName
The name of the detail to delete.
unknownFlag
For future use (must be 0).

Examples

To delete user defined integer detail named "test" for connectors 1, 2:
*createmark(connectors, 1) 1, 2
*CE_DetailDeleteByMark(1, int, "test", 0)
The following commands can be used to set user-defined details:
*CE_DetailSetUint()
*CE_DetailSetInt()
*CE_DetailSetDouble()
*CE_DetailSetString()
*CE_DetailSetTriple()