*removeincludefromdisplay

Removes the entities contained in the specified include file from the current display.

Syntax

*removeincludefromdisplay id shortname

Type

HyperMesh Tcl Modify Command

Description

This command un-displays/masks all of the entities in the specified include file from theHyperMesh modeling window.

Inputs

id
The ID of the include file. An ID of 0 selects the main 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 "".

Example

To remove the entities in the include with ID 3 from the display:

*removeincludefromdisplay 3 ""

To remove the entities in the include with shortname elems.fem from the display:

*removeincludefromdisplay "" 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
}