*CE_ReviewConnectorsReverse

shortDescription

Syntax

*CE_ReviewConnectorsReverse entity_type string_array number_of_strings output_mark_id

Type

HyperMesh Tcl Modify Command

Description

longDescription

Inputs

entity_type
The entity type on which the reverse review operation will be performed. Valid values are connectors and attachments.
string_array
The string array ID that contains the additional input parameters. The string array is created using the *createstringarray command. This should always be set to 1.
Strings are indicated using the format "name=value". Valid strings are:
first_connector_entity=<value>
Defines if the first connector entity needs to be considered for reverse review operation. Valid values are 1 or 0.
linked_entity=<value>
Defines if the linked entites need to be considered for reverse review operation. Valid values are 1 or 0.
realization_connector=<value>
Defines if the realized/solver entites need to be considered for reverse review operation. Valid values are 1 or 0.
second_connector_entity=<value>
Defines if the second connector entity needs to be considered for reverse review operation. Valid values are 1 or 0.
number_of_strings
Integer indicating the size (number of strings) in the string array created using *createstringarray.
output_mark_id
The ID of the mark onto which the reviewed entities are placed. Valid values are 1 and 2.

Examples

To perform reverse review operation on connectors:
*createstringarray 4 "realization_connector=1" "first_connector_entity=1" "linked_entity=0" "second_connector_entity=0"
*CE_ReviewConnectorsReverse connectors 1 4 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

2021