/**
* @constructor
*/
function XUIPictorialBar() {
}
XUIPictorialBar.prototype = {
//接口
/**
* 设置进度最大值
* @param {Number} nMax 进度
* @property {Number} BarProgressMax 45
*/
SetBarProgressMax:function (nMax) {
},
/**
* 设置进度
* @param {Number} nValue 进度
* @property {Number} BarProgress 20
*/
SetBarProgress:function (nValue) {
},
/**
* 设置进度宽高
* @param {Number} nWidth 宽度
* @param {Number} nHeight 高度
* @property {Collection} BarProgressSize [3,20]
*/
SetBarProgressSize:function (nWidth,nHeight) {
},
/**
* 设置进度宽左边距
* @param {Number} nLeft 左边距
* @property {Number} BarProgressMarginLeft 2
*/
SetBarProgressMarginLeft:function (nLeft) {
},
}