/**
* @constructor
*/
function XUIForm() {
}
XUIForm.prototype = {
//事件
/**
* 点击事件
* @eventname XUI_Form_CLICK
* @eventid 0x00001002
*/
//接口
/**
* 是否用颜色绘制
* @param {Boolean} bDrawColor 是否使用颜色绘制
* @property {Boolean} DrawColor true
*/
SetDrawColor:function (bDrawColor) {
},
/**
* 获取是否使用颜色绘制
* @return {Boolean} 是否使用颜色绘制
*/
IsDrawColor:function () {
},
/**
* 设置背景颜色
* @param {String} strColor
* @property {Color} BgColor "0xffffffff"
*/
SetBgColor:function (strColor) {
},
/**
* 获取背景颜色
* @return {String} 背景颜色
*/
GetBgColor:function () {
},
/**
* 设置背景图片
* @param {ImageProp} strImage
* @property {ImageProp} BgImagePath "XUIForm/images/red.png"
*/
SetBgImage:function (strImage) {
},
/**
* 获取背景图片
* @return {String} 背景图片路径
*/
GetBgImage:function () {
},
/**
* 是否显示边框
* @param {Boolean} bShowBorder 是否显示边框
* @property {Boolean} ShowBorder false
*/
SetShowBorder:function (bShowBorder) {
},
/**
* 获取是否显示边框
* @return {Boolean} 是否显示边框
*/
IsShowBorder:function () {
},
/**
* 设置边框线宽
* @param {Number} nWidth
* @property {Number} BorderWidth 1
*/
SetBorderWidth:function (nWidth) {
},
/**
* 获取边框线宽
* @return {Number} 边框线宽
*/
GetBorderWidth:function () {
},
/**
* 设置边框类型
* @param {String} strType
* @property {Combo} BorderType ["solid","dashed","dotted"]
*/
SetBorderType:function (strType) {
},
/**
* 获取边框类型
* @return {String} 边框类型
*/
GetBorderType:function () {
},
/**
* 设置边框颜色
* @param {String} strColor
* @property {Color} BorderColor "0xffff0000"
*/
SetBorderColor:function (strColor) {
},
/**
* 获取边框颜色
* @return {String} 边框颜色
*/
GetBorderColor:function () {
},
/**
* 设置边框圆角
* @param {Number} nRadius
* @property {Number} BorderRadius 0
*/
SetBorderRadius:function (nRadius) {
},
/**
* 获取边框圆角
* @return {Number} 边框圆角
*/
GetBorderRadius:function () {
},
/**
* 穿透鼠标事件
* @param {Boolean} bIgnore 穿透鼠标事件
* @property {Boolean} IgnoreEvents false
*/
IgnoreEvents:function (bIgnore) {
},
/**
* 鼠标样式
* @param {String} cursor 穿透鼠标事件
* @property {Combo} Cursor ["defult","pointer"]
*/
SetCursor:function (cursor) {
},
}