igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
153 lines (152 loc) • 5.12 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebExporterOptionsBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebExporterOptionsBaseDescription, _super);
function WebExporterOptionsBaseDescription() {
var _this = _super.call(this) || this;
_this.o = false;
_this.p = false;
_this.n = false;
_this.s = false;
_this.q = false;
_this.r = false;
_this.l = false;
_this.m = false;
_this.k = false;
_this.ac = null;
return _this;
}
WebExporterOptionsBaseDescription.prototype.get_type = function () {
return "WebExporterOptionsBase";
};
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "ignoreColumnsVisibility", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("IgnoreColumnsVisibility");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "ignoreFiltering", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("IgnoreFiltering");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "ignoreColumnsOrder", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("IgnoreColumnsOrder");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "ignoreSorting", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("IgnoreSorting");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "ignoreGrouping", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("IgnoreGrouping");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "ignoreMultiColumnHeaders", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("IgnoreMultiColumnHeaders");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "exportSummaries", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("ExportSummaries");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "freezeHeaders", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("FreezeHeaders");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "alwaysExportHeaders", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("AlwaysExportHeaders");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExporterOptionsBaseDescription.prototype, "fileName", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("FileName");
},
enumerable: false,
configurable: true
});
WebExporterOptionsBaseDescription.$t = markType(WebExporterOptionsBaseDescription, 'WebExporterOptionsBaseDescription', Description.$);
return WebExporterOptionsBaseDescription;
}(Description));
export { WebExporterOptionsBaseDescription };