/**
* @constructor
*/
function XUIConditionScreening() {
}
XUIConditionScreening.prototype = {
//事件
/**
* 删除列表项派发事件
* @eventname XUI_ConditionScreening_ITEMDELETE
* @eventid 0x0000000001
*/
//接口
/**
* 根据文本删除
* @param {String} strText
*/
RemoveItemByText:function (strText) {
},
/**
* 添加一项
* @param {String} strKey 关键字
* @param {Number} nUuId ID
*/
AddItem:function (strKey,nUuId) {
},
/**
* 删除列表所有
*/
RemoveAllItems:function () {
},
/**
* 按索引删除一项
* @param {Number} nIndex 索引从0开始
*/
RemoveItemByIndex:function (nIndex) {
},
/**
* 设置删除图标
* @param {ImageProp} strImage 添加icon路径
* @property {String} DelIconPath "Project_NUODT_GISSIM/XUIConditionScreening/image/icon_shanchu1.png"
*/
SetDelIconPath:function (strImage) {
},
/**
* 设置删除图标显示隐藏
* @param {Boolean} bShow true显示false隐藏
* @property {Boolean} DelIcon true
*/
ShowDelIcon:function (bShow) {
},
/**
* @return {Array}
*/
GetAllItemText:function () {
},
}