igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
77 lines (76 loc) • 2.54 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 WebColumnSelectionEventArgsDetailDescription = /*@__PURE__*/ (() => {
class WebColumnSelectionEventArgsDetailDescription extends Description {
constructor() {
super();
this.m = null;
this.l = null;
this.k = null;
this.n = null;
this.t = false;
this.v = null;
}
get_type() {
return "WebColumnSelectionEventArgsDetail";
}
get type() {
return this.get_type();
}
get oldSelection() {
return this.m;
}
set oldSelection(a) {
this.m = a;
this.j("OldSelection");
}
get newSelection() {
return this.l;
}
set newSelection(a) {
this.l = a;
this.j("NewSelection");
}
get added() {
return this.k;
}
set added(a) {
this.k = a;
this.j("Added");
}
get removed() {
return this.n;
}
set removed(a) {
this.n = a;
this.j("Removed");
}
get cancel() {
return this.t;
}
set cancel(a) {
this.t = a;
this.j("Cancel");
}
get owner() {
return this.v;
}
set owner(a) {
this.v = a;
this.j("Owner");
}
}
WebColumnSelectionEventArgsDetailDescription.$t = markType(WebColumnSelectionEventArgsDetailDescription, 'WebColumnSelectionEventArgsDetailDescription', Description.$);
WebColumnSelectionEventArgsDetailDescription.__marshalByValue = true;
WebColumnSelectionEventArgsDetailDescription.__marshalByValueAlias = "ColumnSelectionEventArgsDetail";
return WebColumnSelectionEventArgsDetailDescription;
})();