*marksuppressoutput

Sets the export/do not export state of the specified entity mark.

Syntax

*marksuppressoutput entity_type mark_id state

Type

HyperMesh Tcl Modify

Description

Sets the export/do not export state of the specified entity mark.

Inputs

entity_type
The type of entity to set. All non-collected entities are supported.
mark_id
The ID of the mark containing the entities. Valid values are 1 and 2.
state
0 - Set the state to 'export'
1 - Set the state to 'do not export'

Example

To create a mark of all active components and set to 'export:

*createmark comps 1 all
*marksuppressoutput comps 1 0

To create a mark of displayed loadcols to set to "do not export":

*createmark loadcols 1 displayed
*marksuppressoutput loadcols 1 1

Errors

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

Version History

9.0