igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
72 lines (71 loc) • 2.39 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 { WebBaseToolbarDirectiveDescription } from "./WebBaseToolbarDirectiveDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebGridToolbarExporterDescription = /*@__PURE__*/ (() => {
class WebGridToolbarExporterDescription extends WebBaseToolbarDirectiveDescription {
constructor() {
super();
this.ac = false;
this.ad = false;
this.ak = null;
this.ae = false;
this.aj = null;
this.ai = null;
}
get_type() {
return "WebGridToolbarExporter";
}
get exportCSV() {
return this.ac;
}
set exportCSV(a) {
this.ac = a;
this.e("ExportCSV");
}
get exportExcel() {
return this.ad;
}
set exportExcel(a) {
this.ad = a;
this.e("ExportExcel");
}
get filename() {
return this.ak;
}
set filename(a) {
this.ak = a;
this.e("Filename");
}
get isExporting() {
return this.ae;
}
set isExporting(a) {
this.ae = a;
this.e("IsExporting");
}
get exportStartedRef() {
return this.aj;
}
set exportStartedRef(a) {
this.aj = a;
this.e("ExportStartedRef");
}
get exportEndedRef() {
return this.ai;
}
set exportEndedRef(a) {
this.ai = a;
this.e("ExportEndedRef");
}
}
WebGridToolbarExporterDescription.$t = markType(WebGridToolbarExporterDescription, 'WebGridToolbarExporterDescription', WebBaseToolbarDirectiveDescription.$);
return WebGridToolbarExporterDescription;
})();