igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.6 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 { __extends } from "tslib";
import { ToolActionDescription } from "./ToolActionDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ToolActionComboDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionComboDescription, _super);
function ToolActionComboDescription() {
var _this = _super.call(this) || this;
_this.dx = null;
_this.dy = null;
_this.dz = null;
_this.dv = null;
return _this;
}
ToolActionComboDescription.prototype.get_type = function () {
return "ToolActionCombo";
};
Object.defineProperty(ToolActionComboDescription.prototype, "dataSourceRef", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.g("DataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionComboDescription.prototype, "displayMemberPath", {
get: function () {
return this.dy;
},
set: function (a) {
this.dy = a;
this.g("DisplayMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionComboDescription.prototype, "valueMemberPath", {
get: function () {
return this.dz;
},
set: function (a) {
this.dz = a;
this.g("ValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionComboDescription.prototype, "selectedValues", {
get: function () {
return this.dv;
},
set: function (a) {
this.dv = a;
this.g("SelectedValues");
},
enumerable: false,
configurable: true
});
ToolActionComboDescription.$t = markType(ToolActionComboDescription, 'ToolActionComboDescription', ToolActionDescription.$);
return ToolActionComboDescription;
}(ToolActionDescription));
export { ToolActionComboDescription };