*library_sync

Synchronizes library information from a connected library.

Syntax

*library_sync entity_type mark_id ?updatesignal=<value>?

Type

HyperMesh Tcl Modify Command

Description

Synchronizes library information from a connected library. This includes information such as Major Revision, Study Revision, and Library Revision.

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 to synchronize.
updatesignal=<value>
Indicates whether to trigger the Part Browser refresh. Default is 0.

Examples

To synchronize the parts with ID 22, 36, 44 with the opened library:
*createmark parts 1 22 36 44
*library_sync parts 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

2026