/**
* @constructor
*/
function XUIDateEdit() {
}
XUIDateEdit.prototype = {
//接口
/**
* 背景颜色绘制
* @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 ""
*/
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 "0xff000000"
*/
SetInputTextColor:function (strColor) {
},
/**
* 获取文本颜色
* @return {String}
*/
GetInputTextColor:function () {
},
/**
* 输入框文本大小
* @param {Number} nvalue 输入框文本大小
* @property {Number} InputTextFontSize 14
*/
SetInputTextFontSize:function (nvalue) {
},
/**
* 获取文本大小
* @return {Number}
*/
GetInputTextFontSize:function () {
},
/**
* 日期
* @param {Number} nDate 日期
*/
SetDate:function (nDate) {
},
/**
* 通过字符串设置日期
* @param {String} strDate 日期
*/
SetDateByString:function (strDate) {
},
/**
* 获取日期
* @return {Double}
*/
GetDate:function () {
},
/**
* 获取字符串日期
* @return {String}
*/
GetDateByString:function () {
},
/**
* 连接符
* @param {String} strSign 连接符1
* @param {String} strSign1 连接符2
* @property {Collection} Sign ["-",":"]
*/
SetSign:function (strSign,strSign1) {
},
/**
* 获取连接符
* @return {String}
*/
GetSign:function () {
},
/**
* 连接符大小
* @param {Number} nSize 连接符大小
* @property {Number} SignSize 20
*/
SetSignSize:function (nSize) {
},
/**
* 获取连接符大小
* @return {Number}
*/
GetSignSize:function () {
},
/**
* 提示文字颜色
* @param {String} strColor 文字颜色
* @property {Color} PromptTextColor "0xff757575"
*/
SetPromptTextColor:function (strColor) {
},
/**
* 提示文字内容
* @param {String} strYText 年内容
* @param {String} strMText 月内容
* @param {String} strDText 日内容
*/
SetPromptText:function (strYText,strMText,strDText) {
},
}