/**
* @constructor
*/
function XUIRightPressureGauge() {
}

XUIRightPressureGauge.prototype = {

    //接口
    /**
    * 设置零件状态
    * @param {String} strState  
    * @property {Combo} RightPressureGaugeState ["Normal","Stop","Fault","Disable"]
    */
    SetRightPressureGaugeState:function (strState) {
    },

    /**
    * 设置压力数值
    * @param {Number} nValue 数值
    * @property {Number} PressureValue 0
    */
    SetPressureValue:function (nValue) {
    },

    /**
    * 设置温度数值
    * @param {Number} nValue 数值
    * @property {Number} TemperatureValue 0
    */
    SetTemperatureValue:function (nValue) {
    },

    /**
    * 设置标注显示
    * @param {Boolean} bShow 是否显示
    * @property {Boolean} ValueVisible true
    */
    SetValueVisible:function (bShow) {
    },

    /**
    * 穿透鼠标事件
    * @param {Boolean} bIgnore 穿透鼠标事件
    * @property {Boolean} IgnoreEvents false
    */
    IgnoreEvents:function (bIgnore) {
    },

}