/**
* @constructor
*/
function XUINumberEdit() {
}
XUINumberEdit.prototype = {
//接口
/**
* 步长
* @param {Double} dStep 步长
* @property {Double} Step 1
*/
SetStep:function (dStep) {
},
/**
* 最小值
* @param {Double} nMin 最小值
* @property {Double} MinValue 0
*/
SetMinValue:function (nMin) {
},
/**
* 最大值
* @param {Double} nMax 最大值
* @property {Double} MaxValue 999999
*/
SetMaxValue:function (nMax) {
},
/**
* 背景颜色绘制
* @param {Boolean} bDrawColor
* @property {Boolean} BgDrawColor true
*/
SetDrawColor:function (bDrawColor) {
},
/**
* 背景是否以颜色绘制
* @return {Boolean}
*/
IsDrawColor:function () {
},
/**
* 背景颜色
* @param {String} strColor 背景颜色
* @property {Color} CtrlBgColor "0xff003440"
*/
SetCtrlBgColor:function (strColor) {
},
/**
* 获取背景颜色
* @return {String}
*/
GetCtrlBgColor:function () {
},
/**
* 背景图片
* @param {ImageProp} strBgImg 背景图片
* @property {ImageProp} CtrlBgImage "NUODT_JTFA/XUINumberEdit/images/bg1.jpg"
*/
SetCtrlBgImage:function (strBgImg) {
},
/**
* 获取背景图片
* @return {String}
*/
GetCtrlBgImage:function () {
},
/**
* 背景边框
* @param {Number} nvalue 背景边框大小
* @param {String} strColor 背景边框颜色
* @property {Collection} CtrlBgBorder [1,"0xff57ccce"]
*/
SetCtrlBgBorder:function (nvalue,strColor) {
},
/**
* 获取背景边框
* @return {Number}
*/
GetCtrlBgBorder:function () {
},
/**
* 获取背景边框色
* @return {String}
*/
GetCtrlBgBorderColor:function () {
},
/**
* 输入框文本颜色
* @param {String} strColor 输入框文本颜色
* @property {Color} InputTextColor "0xffffffff"
*/
SetInputTextColor:function (strColor) {
},
/**
* 获取文本颜色
* @return {String}
*/
GetInputTextColor:function () {
},
/**
* 输入框文本大小
* @param {Number} nvalue 输入框文本大小
* @property {Number} InputTextFontSize 13
*/
SetInputTextFontSize:function (nvalue) {
},
/**
* 获取文本大小
* @return {Number}
*/
GetInputTextFontSize:function () {
},
/**
* 上icon图片
* @param {ImageProp} strPath 图片
* @property {ImageProp} IconImageTop "NUODT_JTFA/XUINumberEdit/images/btn_up1.png"
*/
SetIconImageTop:function (strPath) {
},
/**
* 获取上icon图片
* @return {String}
*/
GetIconImageTop:function () {
},
/**
* 下icon图片
* @param {ImageProp} strPath 图片
* @property {ImageProp} IconImageFoot "NUODT_JTFA/XUINumberEdit/images/btn_down1.png"
*/
SetIconImageFoot:function (strPath) {
},
/**
* 获取下icon图片
* @return {String}
*/
GetIconImageFoot:function () {
},
/**
* icon间隙
* @param {Number} nSize 间隙大小
* @property {Number} IconSpace 1
*/
SetIconSpace:function (nSize) {
},
/**
* 获取icon间隙
* @return {Number}
*/
GetIconSpace:function () {
},
/**
* icon位置
* @param {Number} nValue1 上下
* @param {Number} nValue2 左右
* @property {Collection} IconPosition [1,1]
*/
SetIconPosition:function (nValue1,nValue2) {
},
/**
* 获取icon位置
* @return {Array}
*/
GetIconPosition:function () {
},
/**
* 输入框文本
* @param {Double} nvalue 文本数值
* @property {Double} InputText 1.0
*/
SetInputText:function (nvalue) {
},
/**
* 获取输入框文本
* @return {String}
*/
GetInputText:function () {
},
/**
* 获取输入
* @return {Double}
*/
GetInput:function () {
},
/**
* 输入框是否禁用
* @param {Boolean} bDisabled 是否禁用
* @property {Boolean} InputTextDisabled false
*/
SetInputTextDisabled:function (bDisabled) {
},
/**
* 设置按钮宽度
* @param {String} strWidth 按钮宽度
* @property {String} IconWidth "30%"
*/
SetIconWidth:function (strWidth) {
},
/**
* 获取按钮宽度
* @return {String}
*/
GetIconWidth:function () {
},
/**
* 小数点后最大位数
* @param {Number} nPrecision 最大位数
* @property {Number} Precision 2
*/
SetInputPrecision:function (nPrecision) {
},
}