The default Feature marker colors can be set on the document properties. The color can either be set using a dropdown color picker, or the colors can be defined in the Cm4D.ini file. If these are defined in the INI file, the color values are copied into the document on creation. On existing documents, the values can be reset to values saved in the INI file.
Changes to Document Feature Marker Colors do not take effect in the 3D view until the snapshot is redrawn. Put a view into Edit Mode to resolve individual views, or use the Create/Update Snapshots option in the Document menu > Document Setup... to redraw all view snapshots.
Setting | Description | Default Color | Color Name | Hex Value | RGB Value | INI Setting |
Neutral | Marker | Dark Gray | #404040 | 64,64,64 |
marker_color_default_neutral |
|
Nominal | Marker representing the Nominal value. | Light Gray | #CCCCCC | 204,204,204 |
marker_color_default_nominal |
|
Good Value | Feature is within Limits. | Vivid Lime Green | #1FFF1F | 31,255,31 |
marker_color_default_value_good |
|
High Value | Feature is above Limit. | Vivid Red | #FF1F1F | 255,31,31 |
marker_color_default_value_hi |
|
Low Value | Feature is below Limit. | Vivid Blue | #1F1FFF | 31,31,255 |
marker_color_default_value_lo |
|
Limits | Limit marker. | Strong Orange | #CE752D | 206,117,45 |
marker_color_default_limits |
|
Distance X | Marker for X characteristic of a Distance feature. | Red | #FF0000 | 255,0,0 |
marker_color_default_distance_x |
|
Distance Y | Marker for the Y characteristic of a Distance feature. | Lime Green | #00FF00 | 0,255,0 |
marker_color_default_distance_y |
|
Distance Z | Marker for Z characteristic of a Distance feature. | Blue | #0000FF | 0,0,255 |
marker_color_default_distance_z |
|
Distance 3D | Marker for the Distance characteristic. | Magenta | #FF00FF | 255,0,255 |
marker_color_default_distance_3d |
|
Reset to INI Defaults | Pulls marker color values defined in the Cm4d.ini file into the document properties. If you have made changes to the colors in CM4D but not to the marker_color options in the INI file, resetting restores the default colors. |
The document feature marker colors can be defined in the [defaults] section.
[defaults]
marker_color_default_neutral = "0x000000"
marker_color_default_nominal = "16711935"
marker_color_default_value_good = "255,0,0"
marker_color_default_value_hi = "0x0,0x0,0xFF"
marker_color_default_value_lo = "0xFF,0xFF,0x0"
marker_color_default_limits = "0x0,0xFF,0xFF"
marker_color_default_distance_x = "0xC0,0xC0,0xC0"
marker_color_default_distance_y = "0x0,0xFF,0x0"
marker_color_default_distance_z = "85,107,47"
marker_color_default_distance_3d = "0,128,128"
Colors are expressed as RGB values in any of the following formats:
Format | Value Example |
ARGB | 0xFF,0x0,0xFF |
Decimal | 16711935 |
Hex | 0xFF00FF |
RGB | 255,0,255 |
See also: Color Reference
Can we improve this topic?