igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
66 lines (65 loc) • 2.41 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 WebRowSelectionEventArgsDetailDescription = /*@__PURE__*/ (() => {
class WebRowSelectionEventArgsDetailDescription extends WebBaseEventArgsDetailDescription {
constructor() {
super();
this.q = null;
this.p = null;
this.o = null;
this.r = null;
this.l = false;
}
get_type() {
return "WebRowSelectionEventArgsDetail";
}
get oldSelectionRef() {
return this.q;
}
set oldSelectionRef(a) {
this.q = a;
this.e("OldSelectionRef");
}
get newSelectionRef() {
return this.p;
}
set newSelectionRef(a) {
this.p = a;
this.e("NewSelectionRef");
}
get addedRef() {
return this.o;
}
set addedRef(a) {
this.o = a;
this.e("AddedRef");
}
get removedRef() {
return this.r;
}
set removedRef(a) {
this.r = a;
this.e("RemovedRef");
}
get allRowsSelected() {
return this.l;
}
set allRowsSelected(a) {
this.l = a;
this.e("AllRowsSelected");
}
}
WebRowSelectionEventArgsDetailDescription.$t = markType(WebRowSelectionEventArgsDetailDescription, 'WebRowSelectionEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebRowSelectionEventArgsDetailDescription.__marshalByValue1 = true;
WebRowSelectionEventArgsDetailDescription.__marshalByValueAlias1 = "RowSelectionEventArgsDetail";
return WebRowSelectionEventArgsDetailDescription;
})();