igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
107 lines (106 loc) • 3.3 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebExporterOptionsBaseDescription = /*@__PURE__*/ (() => {
class WebExporterOptionsBaseDescription extends Description {
constructor() {
super();
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;
}
get_type() {
return "WebExporterOptionsBase";
}
get type() {
return this.get_type();
}
get ignoreColumnsVisibility() {
return this.o;
}
set ignoreColumnsVisibility(a) {
this.o = a;
this.j("IgnoreColumnsVisibility");
}
get ignoreFiltering() {
return this.p;
}
set ignoreFiltering(a) {
this.p = a;
this.j("IgnoreFiltering");
}
get ignoreColumnsOrder() {
return this.n;
}
set ignoreColumnsOrder(a) {
this.n = a;
this.j("IgnoreColumnsOrder");
}
get ignoreSorting() {
return this.s;
}
set ignoreSorting(a) {
this.s = a;
this.j("IgnoreSorting");
}
get ignoreGrouping() {
return this.q;
}
set ignoreGrouping(a) {
this.q = a;
this.j("IgnoreGrouping");
}
get ignoreMultiColumnHeaders() {
return this.r;
}
set ignoreMultiColumnHeaders(a) {
this.r = a;
this.j("IgnoreMultiColumnHeaders");
}
get exportSummaries() {
return this.l;
}
set exportSummaries(a) {
this.l = a;
this.j("ExportSummaries");
}
get freezeHeaders() {
return this.m;
}
set freezeHeaders(a) {
this.m = a;
this.j("FreezeHeaders");
}
get alwaysExportHeaders() {
return this.k;
}
set alwaysExportHeaders(a) {
this.k = a;
this.j("AlwaysExportHeaders");
}
get fileName() {
return this.ac;
}
set fileName(a) {
this.ac = a;
this.j("FileName");
}
}
WebExporterOptionsBaseDescription.$t = markType(WebExporterOptionsBaseDescription, 'WebExporterOptionsBaseDescription', Description.$);
return WebExporterOptionsBaseDescription;
})();