igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
125 lines (124 loc) • 3.57 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 WebGridEditEventArgsDetailDescription = /*@__PURE__*/ (() => {
class WebGridEditEventArgsDetailDescription extends Description {
constructor() {
super();
this.r = false;
this.ab = null;
this.z = null;
this.ac = null;
this.o = null;
this.aa = null;
this.y = null;
this.x = null;
this.k = null;
this.m = null;
this.s = false;
this.t = false;
}
get_type() {
return "WebGridEditEventArgsDetail";
}
get type() {
return this.get_type();
}
get cancel() {
return this.r;
}
set cancel(a) {
this.r = a;
this.j("Cancel");
}
get rowID() {
return this.ab;
}
set rowID(a) {
this.ab = a;
this.j("RowID");
}
get primaryKey() {
return this.z;
}
set primaryKey(a) {
this.z = a;
this.j("PrimaryKey");
}
get rowKey() {
return this.ac;
}
set rowKey(a) {
this.ac = a;
this.j("RowKey");
}
get cellID() {
return this.o;
}
set cellID(a) {
this.o = a;
this.j("CellID");
}
get rowData() {
return this.aa;
}
set rowData(a) {
this.aa = a;
this.j("RowData");
}
get oldValue() {
return this.y;
}
set oldValue(a) {
this.y = a;
this.j("OldValue");
}
get newValue() {
return this.x;
}
set newValue(a) {
this.x = a;
this.j("NewValue");
}
get column() {
return this.k;
}
set column(a) {
this.k = a;
this.j("Column");
}
get owner() {
return this.m;
}
set owner(a) {
this.m = a;
this.j("Owner");
}
get isAddRow() {
return this.s;
}
set isAddRow(a) {
this.s = a;
this.j("IsAddRow");
}
get valid() {
return this.t;
}
set valid(a) {
this.t = a;
this.j("Valid");
}
}
WebGridEditEventArgsDetailDescription.$t = markType(WebGridEditEventArgsDetailDescription, 'WebGridEditEventArgsDetailDescription', Description.$);
WebGridEditEventArgsDetailDescription.__marshalByValue = true;
WebGridEditEventArgsDetailDescription.__marshalByValueAlias = "GridEditEventArgsDetail";
return WebGridEditEventArgsDetailDescription;
})();