GUI_ViewModeChanged
Callback event that is called when the CAD drawing view mode changes. View mode is the switching between monochrome and color display.
Related method
Callback Parameters
onoff: boolean — whentrueviewmode is on, whenfalseviewmode is off.
Example
RxCore.GUI_ViewModeChanged.connect(function (onoff){
console.log("monochrome view is ", onoff);
});