*configedit

Changes the configuration of a selection of elements.

Syntax

*configedit mark_id config

Type

HyperMesh Tcl Modify Command

Description

Changes the configuration of a selection of elements.

Inputs

mark_id
The ID of the mark. Valid values are 1 and 2.
config
The new configuration name to assign. The new configuration cannot add new nodes.

Examples

To set all plot elements to bar2:
*createmark elements 1 "by config" plot
*configedit 1 bar2

Errors

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