*setmeshlinecolor

Sets the color for mesh lines.

Syntax

*setmeshlinecolor color

Type

HyperMesh Tcl Modify

Description

Sets the color for mesh lines. This color is used if *setautomeshcolormode is set to 1.

Inputs

color
The color value from 1-64.

Example

To set the mesh line color to 15 and disable auto color mode:

*setmeshlinecolor 15
*setautomeshcolormode 0

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}