*metadatamarkremove

Removes metadata from the specified mark of entities.

Syntax

*metadatamarkremove entity_type mark_id name

Type

HyperMesh Tcl Modify Command

Description

Removes metadata from the specified mark of entities.

Inputs

entity_type
The type of entities contained on the mark.
The undef entity type is used to remove metadata from the model itself.
mark_id
The ID of the mark containing the entities to which the metadata will be removed. Valid values are 1 and 2.
name
The name by which the metadata is referenced.

Example

To remove metadata named Int_Val from elements 1-100:

*createmark elems 1 1-100
*metadatamarkremove elems 1 "Int_Val"

Errors

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