Skip to main content

GUI_CalibrateComplete

Connection object that returns the applied calibration value and page number when a calibration value is applied to a page.

Associated methods

Callback Parameters

  • calibratedata: object: Object containing the calibration value and page number.
var calibratedata = {
calibratescale: nCalibrateScale, //number
pagenumber: pagenumber //number
};

Example

    RxCore.GUI_CalibrateComplete.connect(function(calibratedata){
console.log("Page ", calibratedata.pagenumber, " has new calibration scale ", calibratedata.calibratescale);
});