*library_save_rep

Saves representations to a connected library.

Syntax

*library_save_rep entity_type mark_id rep_alias_list ?overwrite=<value>?

Type

HyperMesh Tcl Modify Command

Description

Saves representations to a connected library.

Inputs

entity_type
The entity type stored in the library. Currently supported for parts and subsystems.
mark_id
The ID of the mark containing the entities for which the representation will be saved.
rep_alias_list
The list of representation alias names to save.
overwrite=<value>
The list of representation alias names to save.

Examples

To save “NVH 10mm” representation to Part library for part ID 22:
*createmark parts 1 22
*library_save_rep parts 1 "NVH 10mm"

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

2026