UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

72 lines (71 loc) 2.38 kB
/* 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.ad = false; this.ae = false; this.af = false; this.al = null; this.ak = null; this.aj = null; } get_type() { return "WebGridToolbarExporter"; } get exportCSV() { return this.ad; } set exportCSV(a) { this.ad = a; this.j("ExportCSV"); } get exportExcel() { return this.ae; } set exportExcel(a) { this.ae = a; this.j("ExportExcel"); } get exportPDF() { return this.af; } set exportPDF(a) { this.af = a; this.j("ExportPDF"); } get filename() { return this.al; } set filename(a) { this.al = a; this.j("Filename"); } get exportStartedRef() { return this.ak; } set exportStartedRef(a) { this.ak = a; this.j("ExportStartedRef"); } get exportEndedRef() { return this.aj; } set exportEndedRef(a) { this.aj = a; this.j("ExportEndedRef"); } } WebGridToolbarExporterDescription.$t = markType(WebGridToolbarExporterDescription, 'WebGridToolbarExporterDescription', WebBaseToolbarDirectiveDescription.$); return WebGridToolbarExporterDescription; })();