/**
* @constructor
*/
function XUILED() {
}
XUILED.prototype = {
//接口
/**
* 文本
* @param {String} strText 文本内容
* @property {String} Text "LED"
*/
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} 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 () {
},
}