UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

74 lines (73 loc) 2.56 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 { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription"; import { markType } from "./type"; /** * @hidden */ export let WebColumnExportingEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebColumnExportingEventArgsDetailDescription extends WebBaseEventArgsDetailDescription { constructor() { super(); this.aa = null; this.z = null; this.w = 0; this.s = false; this.t = false; this.p = null; } get_type() { return "WebColumnExportingEventArgsDetail"; } get header() { return this.aa; } set header(a) { this.aa = a; this.j("Header"); } get field() { return this.z; } set field(a) { this.z = a; this.j("Field"); } get columnIndex() { return this.w; } set columnIndex(a) { this.w = a; this.j("ColumnIndex"); } get cancel() { return this.s; } set cancel(a) { this.s = a; this.j("Cancel"); } get skipFormatter() { return this.t; } set skipFormatter(a) { this.t = a; this.j("SkipFormatter"); } get grid() { return this.p; } set grid(a) { this.p = a; this.j("Grid"); } } WebColumnExportingEventArgsDetailDescription.$t = markType(WebColumnExportingEventArgsDetailDescription, 'WebColumnExportingEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebColumnExportingEventArgsDetailDescription.__marshalByValue1 = true; WebColumnExportingEventArgsDetailDescription.__marshalByValueAlias1 = "ColumnExportingEventArgsDetail"; return WebColumnExportingEventArgsDetailDescription; })();