/**
* @constructor
*/
function XUILabelCarousel() {
}

XUILabelCarousel.prototype = {

    //接口
    /**
     * 选中图标颜色
     * @param {String} circleColor 圆环颜色
     * @param {String} borderColor 边框颜色
     * @property {Collection} RingColor ["0xff4582ff","0xfff9f9fa"]
     */
    SetRingColor:function (circleColor,borderColor) {
    },

    /**
     * 选中文本颜色
     * @param {String} strCheckTextColor 选中文本的颜色
     * @property {Color} CheckTextColor "0xffffffff"
     */
    SetCheckTextColor:function (strCheckTextColor) {
    },

    /**
     * 备选文本颜色
     * @param {String} strReadyTextColor 备选文本的颜色
     * @property {Color} ReadyTextColor "0xff8394c1"
     */
    SetReadyTextColor:function (strReadyTextColor) {
    },

    /**
     * 后部文本颜色
     * @param {String} strNormalTextColor 后部文本的颜色
     * @property {Color} RNormalTextColor "0xff38435f"
     */
    SetRNormalTextColor:function (strNormalTextColor) {
    },

    /**
     * 文本大小
     * @param {Number} nTextSize TextSize
     * @property {Number} TextSize 20
     */
    SetTextSize:function (nTextSize) {
    },

    /**
     * 文字下图标颜色
     * @param {String} strIconColor 图标的颜色
     * @property {Color} TextIconColor "0xff556284"
     */
    SetTextIconColor:function (strIconColor) {
    },

    /**
     * 图标图片
     * @param {ImageProp} strImg 图标路径
     * @property {ImageProp} IconImage "websiteCase/XUILabelCarousel/images/fwyhsj_quan.png"
     */
    SetIconImage:function (strImg) {
    },

    /**
     * 图标位置和宽高
     * @param {Number} nX 距离左距离
     * @param {Number} nY 距离上距离
     * @param {Number} nWidth 距离左距离
     * @param {Number} nHeight 距离左距离
     * @property {Collection} IconInfo [29,100,210,57]
     */
    SetIconInfo:function (nX,nY,nWidth,nHeight) {
    },

    /**
     * 背景图片
     * @param {ImageProp} strImg 图标路径
     * @property {ImageProp} BgImage ""
     */
    SetBgImage:function (strImg) {
    },

    /**
     * 模板数据
     * @param {Array} itemArr 项数组
     */
    SetItemArrData:function (itemArr) {
    },

    /**
     * 清空所有数据
     */
    ClearAll:function () {
    },

    /**
     * 添加一项
     * @param {String} strName 项名称
     */
    AppendItem:function (strName) {
    },

    /**
     * 通过序号修改文本
     * @param {Number} nIndex 项名称
     * @param {String} strName 项名称
     */
    SetItemNameByIndex:function (nIndex,strName) {
    },

    /**
     * 通过序号删除一项
     * @param {Number} nIndex 项名称
     */
    DeleteItemByIndex:function (nIndex) {
    },

    /**
     * 获取选中项名称
     * @return {String} 选中区域名称
     */
    GetCheckedName:function () {
    },

}