*tagupdate

Updates a tag entity.

Syntax

*tagupdate id label body color

Type

HyperMesh Tcl Modify

Description

Updates a tag entity.

Inputs

id
The ID of the tag to update.
label
The string to assign as the tag label.
body
The string to assign as the tag body.
color
The color of the tag. Valid values are 1-64.

Example

To update tag 100 to be named "top:control_arm":

*tagupdate 100 "top" "control_arm" 10

Errors

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