igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
85 lines (84 loc) • 2.76 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 WebRowSelectionEventArgsDetailDescription = /*@__PURE__*/ (() => {
class WebRowSelectionEventArgsDetailDescription extends Description {
constructor() {
super();
this.r = null;
this.q = null;
this.p = null;
this.s = null;
this.i = false;
this.j = false;
this.m = null;
}
get_type() {
return "WebRowSelectionEventArgsDetail";
}
get type() {
return this.get_type();
}
get oldSelectionRef() {
return this.r;
}
set oldSelectionRef(a) {
this.r = a;
this.g("OldSelectionRef");
}
get newSelectionRef() {
return this.q;
}
set newSelectionRef(a) {
this.q = a;
this.g("NewSelectionRef");
}
get addedRef() {
return this.p;
}
set addedRef(a) {
this.p = a;
this.g("AddedRef");
}
get removedRef() {
return this.s;
}
set removedRef(a) {
this.s = a;
this.g("RemovedRef");
}
get allRowsSelected() {
return this.i;
}
set allRowsSelected(a) {
this.i = a;
this.g("AllRowsSelected");
}
get cancel() {
return this.j;
}
set cancel(a) {
this.j = a;
this.g("Cancel");
}
get owner() {
return this.m;
}
set owner(a) {
this.m = a;
this.g("Owner");
}
}
WebRowSelectionEventArgsDetailDescription.$t = markType(WebRowSelectionEventArgsDetailDescription, 'WebRowSelectionEventArgsDetailDescription', Description.$);
WebRowSelectionEventArgsDetailDescription.__marshalByValue = true;
WebRowSelectionEventArgsDetailDescription.__marshalByValueAlias = "RowSelectionEventArgsDetail";
return WebRowSelectionEventArgsDetailDescription;
})();