*CE_AutoReorganize
Automatically reorganize connectors into parts or subsystems based on given criteria.
Syntax
*CE_AutoReorganize mark_id criteria
Type
HyperMesh Tcl Modify Command
Description
This command reorganizes connectors into parts or subsystems based on user criteria.
Inputs
- mark_id
- The ID of the mark containing the connectors to reorganize. Valid values are 1 and 2.
- criteria
- The criteria used for reorganizing the connectors. Valid values are:
Examples
To automatically reorganize all connectors into source
part:
*createmark connectors 1 all
*CE_ AutoReorganize 1 1
To automatically reorganize all connectors into appropriate
subsystems:
*createmark connectors 1 all
*CE_AutoReorganize 1 2
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
2024