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

XUINumericalLCD.prototype = {

    //接口
    /**
    * 文本
    * @param {String} strText 文本内容
    * @property {String} Text "0123456789"
    */
    SetText:function (strText) {
    },

    /**
    * 获取文本
    * @return {String} 文本内容
    */
    GetText:function () {
    },

    /**
    * 文本颜色
    * @param {String} strColor 文字颜色
    * @property {Color} TextColor "0xffff0000"
    */
    SetTextColor:function (strColor) {
    },

    /**
    * 获取文本颜色
    * @return {String} 文本颜色
    */
    GetTextColor:function () {
    },

    /**
    * 文本水平对齐方式
    * @param {String} strAlignType "left";"center";"right"
    * @property {Combo} HorAlign ["center","left","right"]
    */
    SetTextHorAlign:function (strAlignType) {
    },

    /**
    * 文本竖直对齐方式
    * @param {String} strAlignType "left";"center";"right"
    * @property {Combo} VerAlign ["middle","top","bottom"]
    */
    SetTextVerAlign:function (strAlignType) {
    },

    /**
    * 设置文字间距
    * @param {Number} nLetterSpacing 
    * @property {Number} LetterSpacing 0
    */
    SetLetterSpacing:function (nLetterSpacing) {
    },

    /**
    * 背景文本颜色
    * @param {String} strColor 背景文字颜色
    * @property {Color} BgTextColor "0xff000000"
    */
    SetBgTextColor:function (strColor) {
    },

    /**
    * 获取背景文本颜色
    * @return {String} 文本颜色
    */
    GetBgTextColor:function () {
    },

    /**
    * 文本大小
    * @param {Number} nFontSize 文字大小
    * @property {Number} TextSize 80
    */
    SetTextSize:function (nFontSize) {
    },

    /**
    * 获取文本大小
    * @return {Number} 文本大小
    */
    GetTextSize:function () {
    },

    /**
    * 字体
    * @param {String} strFontFamily 
    */
    SetFontFamily:function (strFontFamily) {
    },

    /**
    * 获取文本字体
    * @return {String} 文本大小
    */
    GetFontFamily:function () {
    },

    /**
    * 背景使用颜色绘制
    * @param {Boolean} bDrawColor 使用颜色绘制
    * @property {Boolean} DrawColor true
    */
    SetDrawColor:function (bDrawColor) {
    },

    /**
    * 背景是否使用颜色绘制
    * @return {Boolean} 是否使用颜色绘制
    */
    IsDrawColor:function () {
    },

    /**
    * 背景颜色
    * @param {String} strColor 背景颜色
    * @property {Color} BgColor "0xff888888"
    */
    SetBgColor:function (strColor) {
    },

    /**
    * 获取背景颜色
    * @return {String} 背景颜色
    */
    GetBgColor:function () {
    },

    /**
    * 背景图片
    * @param {ImageProp} strImage 
    * @property {ImageProp} BgImage ""
    */
    SetBgImage:function (strImage) {
    },

    /**
    * 获取背景图片
    * @return {String} 背景图片
    */
    GetBgImage:function () {
    },

    /**
    * 显示背景文字
    * @param {Boolean} bShow  显示背景文字
    * @property {Boolean} ShowBgText true
    */
    ShowBgText:function (bShow) {
    },

    /**
    * 是否显示背景文字
    * @return {Boolean} 是否显示
    */
    IsShowBgText:function () {
    },

    /**
    * 背景文本透明度
    * @param {Double} dOpacity 背景文本透0.2
    */
    SetBgTextOpacity:function (dOpacity) {
    },

    /**
    * 获取背景文本透明度
    * @return {Double} 透明度
    */
    GetBgTextOpacity:function () {
    },

    /**
    * 指数显示
    * @param {Boolean} bExponent 是否指数显示
    * @property {Boolean} bExponent false
    */
    SetShowExponent:function (bExponent) {
    },

    /**
    * 是否指数显示
    * @return {Boolean} 指数显示
    */
    IsShowExponent:function () {
    },

    /**
    * 幂数显示
    * @param {Boolean} bPower 是否幂数显示
    * @property {Boolean} bPower false
    */
    SetShowPower:function (bPower) {
    },

    /**
    * 是否幂数显示
    * @return {Boolean} 幂数显示
    */
    IsShowPower:function () {
    },

    /**
    * 科学计数显示精度
    * @param {Number} nPrecision 科学计数显示精度
    * @property {Number} nPrecision 3
    */
    SetPrecision:function (nPrecision) {
    },

    /**
    * 获取科学计数精度
    * @return {Number} 精度
    */
    GetPrecision:function () {
    },

}