igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.55 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 { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebColumnExportingEventArgsDetailDescription = /*@__PURE__*/ (() => {
class WebColumnExportingEventArgsDetailDescription extends WebBaseEventArgsDetailDescription {
constructor() {
super();
this.v = null;
this.u = null;
this.r = 0;
this.n = false;
this.o = false;
this.k = null;
}
get_type() {
return "WebColumnExportingEventArgsDetail";
}
get header() {
return this.v;
}
set header(a) {
this.v = a;
this.e("Header");
}
get field() {
return this.u;
}
set field(a) {
this.u = a;
this.e("Field");
}
get columnIndex() {
return this.r;
}
set columnIndex(a) {
this.r = a;
this.e("ColumnIndex");
}
get cancel() {
return this.n;
}
set cancel(a) {
this.n = a;
this.e("Cancel");
}
get skipFormatter() {
return this.o;
}
set skipFormatter(a) {
this.o = a;
this.e("SkipFormatter");
}
get grid() {
return this.k;
}
set grid(a) {
this.k = a;
this.e("Grid");
}
}
WebColumnExportingEventArgsDetailDescription.$t = markType(WebColumnExportingEventArgsDetailDescription, 'WebColumnExportingEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebColumnExportingEventArgsDetailDescription.__marshalByValue1 = true;
WebColumnExportingEventArgsDetailDescription.__marshalByValueAlias1 = "ColumnExportingEventArgsDetail";
return WebColumnExportingEventArgsDetailDescription;
})();