hm_edittextcard
Launches the Tk control Card Editor to edit a text control card.
Syntax
hm_edittextcard entity_id
Type
HyperMesh Tcl GUI
Description
This command launches the HyperMesh Tk control Card Editor to allow editing of a specific control card. Use hm_istextcard to determine if a control card can be edited using this command.
Inputs
- entity_id
- The ID of the text control card.
Example
To edit control card 100:
hm_edittextcard 100
Errors
Incorrect usage results in a Tcl error. To
detect errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}