*setreviewbymarkenhanced
Adds entities to the enhanced review list based on a mark.
Syntax
*setreviewbymarkenhanced entity_type mark_id color shaded edges
Type
HyperMesh Tcl Modify Command
Description
This command adds entities to the enhanced review list based on a mark. This is similar to *setreviewbymark, but allows for entity shading and edge visualization.
Inputs
- entity_type
 - The type of entity to add to the review list. Valid values are:
- nodes
 - elems
 - points
 - lines
 - surfs
 - solids
 - connectors
 - loads
 - equations
 - systs
 - vectors
 
 - mark_id
 - The ID of the mark containing the entities. Valid values are 1 and 2.
 - color
 - The color to use for review of the entity. Valid values are 1-64.
 - shaded
 - If set to 1, surfaces and elements are put into shaded mode.
 - edges
 - If set to 1, surface and element edges are drawn in black.
 
Example
To review elements 1-100 with color 4 and enabling shading and edge visualization, with all other non-reviewed entities having transparency and gray color:
*createmark elems 1 1-100
*setreviewbymarkenhanced elems 1 4 1 1
*setreviewcolormode 0
*setreviewtransparentmode 1
*setreviewmode 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
11.0.130