igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
58 lines (57 loc) • 2.2 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 WebColumnSelectionEventArgsDetailDescription = /*@__PURE__*/ (() => {
class WebColumnSelectionEventArgsDetailDescription extends WebBaseEventArgsDetailDescription {
constructor() {
super();
this.m = null;
this.l = null;
this.k = null;
this.n = null;
}
get_type() {
return "WebColumnSelectionEventArgsDetail";
}
get oldSelection() {
return this.m;
}
set oldSelection(a) {
this.m = a;
this.e("OldSelection");
}
get newSelection() {
return this.l;
}
set newSelection(a) {
this.l = a;
this.e("NewSelection");
}
get added() {
return this.k;
}
set added(a) {
this.k = a;
this.e("Added");
}
get removed() {
return this.n;
}
set removed(a) {
this.n = a;
this.e("Removed");
}
}
WebColumnSelectionEventArgsDetailDescription.$t = markType(WebColumnSelectionEventArgsDetailDescription, 'WebColumnSelectionEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebColumnSelectionEventArgsDetailDescription.__marshalByValue1 = true;
WebColumnSelectionEventArgsDetailDescription.__marshalByValueAlias1 = "ColumnSelectionEventArgsDetail";
return WebColumnSelectionEventArgsDetailDescription;
})();