hm_callspecialpanel

Displays the specified special panel.

Syntax

hm_callspecialpanel panel_name

Type

HyperMesh Tcl GUI Command

Description

This command will display the specified special panel.

Inputs

panel_name
The name of the special panel. Valid names are:
  • card
  • controlcards
  • display
  • global
  • options
  • plotwindow
  • "spherical clipping"
  • trueview
  • vis

Example

To open the Spherical Clipping panel:

hm_callspecialpanel "spherical clipping"

Errors

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