igniteui-react-core
Version:
Ignite UI React Core.
58 lines (57 loc) • 2.07 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { ToolActionInfoDescription } from "./ToolActionInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ToolActionComboInfoDescription = /*@__PURE__*/ (() => {
class ToolActionComboInfoDescription extends ToolActionInfoDescription {
get_type() {
return "ToolActionComboInfo";
}
constructor() {
super();
this.bo = null;
this.bp = null;
this.br = null;
this.bq = null;
}
get dataSourceRef() {
return this.bo;
}
set dataSourceRef(a) {
this.bo = a;
this.g("DataSourceRef");
}
get displayMemberPath() {
return this.bp;
}
set displayMemberPath(a) {
this.bp = a;
this.g("DisplayMemberPath");
}
get valueMemberPath() {
return this.br;
}
set valueMemberPath(a) {
this.br = a;
this.g("ValueMemberPath");
}
get selectedValuesRef() {
return this.bq;
}
set selectedValuesRef(a) {
this.bq = a;
this.g("SelectedValuesRef");
}
}
ToolActionComboInfoDescription.$t = /*@__PURE__*/ markType(ToolActionComboInfoDescription, 'ToolActionComboInfoDescription', ToolActionInfoDescription.$);
ToolActionComboInfoDescription.__marshalByValue1 = true;
ToolActionComboInfoDescription.__marshalByValueAlias1 = "ToolActionComboInfo";
return ToolActionComboInfoDescription;
})();