/**
* @constructor
*/
function XUIInfoBox() {
}
XUIInfoBox.prototype = {
//接口
/**
* 添加提示框内文本
* @param {String} strText 提示框内添加的文本
* @property {String} AddContent ""
*/
AddContent:function (strText) {
},
/**
* 添加提示框内文本带滚动条
* @param {String} strText 提示框内添加的文本
* @property {String} AddContentText ""
*/
AddContentText:function (strText) {
},
/**
* 修改提示框边框颜色
* @param {String} strColor 提示框的高度
* @property {Color} BorderColor "0xff000000"
*/
SetBorderColor:function (strColor) {
},
/**
* 修改提示框边框粗细
* @param {Number} nWidth 提示框的高度
* @property {Number} BorderWidth 1
*/
SetBorderWidth:function (nWidth) {
},
/**
* 修改文本大小
* @param {Number} nSize 文本大小
* @property {Number} FontSize 16
*/
SetFontSize:function (nSize) {
},
/**
* 修改文本样式
* @param {String} strFamily 文本样式
* @property {String} FontFamily "楷体"
*/
SetFontFamily:function (strFamily) {
},
/**
* 历史文本颜色
* @param {String} strColor 文本颜色
* @property {Color} OldFontColor "0xff000000"
*/
SetOldFontColor:function (strColor) {
},
/**
* 当前文本颜色
* @param {String} strColor 文本颜色
* @property {Color} CurrentFontColor "0xffff0000"
*/
SetCurrentFontColor:function (strColor) {
},
/**
* 清除内容
*/
ClearContent:function () {
},
/**
* 背景颜色绘制
* @param {Boolean} bDrawColor 是否以颜色绘制
* @property {Boolean} DrawColor true
*/
SetBgDrawColor:function (bDrawColor) {
},
/**
* 背景颜色
* @param {String} strColor 背景颜色
* @property {Color} BgColor "0xffffffff"
*/
SetBgColor:function (strColor) {
},
/**
* 背景图片
* @param {ImageProp} strPath 背景图片
* @property {ImageProp} BgImg ""
*/
SetBgImg:function (strPath) {
},
/**
* 滚动条样式
* @param {Number} nWidth 滚动条宽度
* @param {Number} nTrackR 轨道圆角
* @param {Number} nThumbR 滑块圆角
* @param {Number} nButtonH 按钮高度
* @param {Number} nButtonR 按钮圆角
* @property {Collection} ScrollBarFacade [10,10,10,0,0]
*/
SetScrollBarFacade:function (nWidth,nTrackR,nThumbR,nButtonH,nButtonR) {
},
/**
* 滚动条颜色
* @param {String} bgColor 整体背景色
* @param {String} trackColor 轨道颜色
* @param {String} ThumbColor 滑块颜色
* @param {String} ButtonColor 按钮颜色
* @property {Collection} ScrollBarColors ["0x0000ff00", "0x0000ff00", "0xff1b4675", "0x0000ff00"]
*/
SetScrollBarColors:function (bgColor,trackColor,ThumbColor,ButtonColor) {
},
}