/**
* @constructor
*/
function XUIGroupBox() {
}
XUIGroupBox.prototype = {
//接口
/**
* 是否用颜色绘制
* @param {Boolean} bDrawColor 是否使用颜色绘制
* @property {Boolean} DrawColor true
*/
SetDrawColor:function (bDrawColor) {
},
/**
* 获取是否使用颜色绘制
* @return {Boolean} 是否使用颜色绘制
*/
IsDrawColor:function () {
},
/**
* 设置背景图片
* @param {ImageProp} strImage
* @property {ImageProp} BgImagePath ""
*/
SetBgImage:function (strImage) {
},
/**
* 获取背景图片
* @return {String} 背景图片路径
*/
GetBgImage:function () {
},
/**
* 设置背景色
* @param {String} strColor 边框颜色
* @property {Color} FieldsetBgColor "0xffFF0000"
*/
SetFieldsetBgColor:function (strColor) {
},
/**
* 获取边框背景色
* @return {String}
*/
GetFieldsetBgColor:function () {
},
/**
* 设置边框宽度
* @param {Number} nWidth 边框宽度
* @property {Number} FieldsetWidth 200
*/
SetFieldsetWidth:function (nWidth) {
},
/**
* 获取边框宽度
* @return {String}
*/
GetFieldsetWidth:function () {
},
/**
* 设置边框高度
* @param {Number} nHeight 边框高度
* @property {Number} FieldsetHeight 200
*/
SetFieldsetHeight:function (nHeight) {
},
/**
* 获取边框高度
* @return {String}
*/
GetFieldsetHeight:function () {
},
/**
* 设置边框颜色
* @param {String} strColor 边框颜色
* @property {Color} FieldsetColor "0xffFF0000"
*/
SetFieldsetColor:function (strColor) {
},
/**
* 获取边框颜色
* @return {String}
*/
GetFieldsetColor:function () {
},
/**
* 设置边框粗细
* @param {Number} nWidth 边框粗细
* @property {Number} FieldsetBorWidth 1
*/
SetFieldsetBorWidth:function (nWidth) {
},
/**
* 获取边框粗细
* @return {String}
*/
GetFieldsetBorWidth:function () {
},
/**
* 设置边框类型
* @param {String} strStyle 边框类型
* @property {Combo} FieldsetStyle ["solid","dotted","dashed"]
*/
SetFieldsetStyle:function (strStyle) {
},
/**
* 获取边框类型
* @return {String}
*/
GetFieldsetStyle:function () {
},
/**
* 设置标题内容
* @param {String} strText 标题内容
* @property {String} TitleText "text"
*/
SetTitleText:function (strText) {
},
/**
* 获取标题内容
* @return {String}
*/
GetTitleText:function () {
},
/**
* 设置标题字体颜色
* @param {String} strColor 标题字体颜色
* @property {Color} TitleTextColor "0xffFF0000"
*/
SetTitleTextColor:function (strColor) {
},
/**
* 获取标题字体颜色
* @return {String}
*/
GetTitleTextColor:function () {
},
/**
* 设置标题字体大小
* @param {Number} nSize 标题字体大小
* @property {Number} TitleTextSize "10"
*/
SetTitleTextSize:function (nSize) {
},
/**
* 获取标题字体大小
* @return {String}
*/
GetTitleTextSize:function () {
},
/**
* 设置标题字体风格
* @param {String} strStyle 标题字体风格
* @property {Combo} TitleTextStyle ["normal","italic","oblique"]
*/
SetTitleTextStyle:function (strStyle) {
},
/**
* 获取标题字体风格
* @return {String}
*/
GetTitleTextStyle:function () {
},
/**
* 设置标题字体系列
* @param {String} strFamily 标题字体系列
* @property {Combo} TitleTextFamily ["serif","monospace","Arial","Courier New","Microsoft YaHei"]
*/
SetTitleTextFamily:function (strFamily) {
},
/**
* 获取标题字体系列
* @return {String}
*/
GetTitleTextFamily:function () {
},
/**
* 设置边框外边距
* @param {Number} nTop 上侧外边距
* @param {Number} nRight 右侧外边距
* @param {Number} nBottom 下侧外边距
* @param {Number} nLeft 左侧外边距
* @property {Collection} FieldsetMargin [0,0,0,0]
*/
SetFieldsetMargin:function (nTop,nRight,nBottom,nLeft) {
},
/**
* 获取边框上外边距
* @return {String}
*/
GetFieldsetMarginTop:function () {
},
/**
* 获取边框右外边距
* @return {String}
*/
GetFieldsetMarginRight:function () {
},
/**
* 获取边框下外边距
* @return {String}
*/
GetFieldsetMarginBottom:function () {
},
/**
* 获取边框下左边距
* @return {String}
*/
GetFieldsetMarginLeft:function () {
},
/**
* 设置边框圆角
* @param {Number} nRadius 圆角
* @property {Number} FieldsetRadius 0
*/
SetFieldsetRadius:function (nRadius) {
},
/**
* 获取边框圆角
* @return {String}
*/
GetFieldsetRadius:function () {
},
}