*addincludetodisplay
Adds the entities contained in the specified include file to the current display.
Syntax
*addincludetodisplay id shortname
Type
HyperMesh Tcl Modify
Description
This command displays/unmasks all of the entities in the specified include file to the HyperMesh modeling window.
Inputs
- id
- The ID of the include file. An ID of 0 selects the master file. If not specified, should be blank "".
- shortname
- The shortname of the include file. This value can be blank when id is specified. If not specified, should be blank "".
Examples
To add the entities in the include with ID 3 to the display:
*addincludetodisplay 3 ""
To add the entities in the include with shortname elems.fem to the
display:
*addincludetodisplay "" elems.fem
Errors
Incorrect usage results in a Tcl error. To
detect errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}