UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

98 lines (97 loc) 3.06 kB
/* 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 WebGridEditDoneEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebGridEditDoneEventArgsDetailDescription extends WebBaseEventArgsDetailDescription { constructor() { super(); this.y = null; this.o = null; this.x = null; this.w = null; this.v = null; this.k = null; this.m = null; this.r = false; this.s = false; } get_type() { return "WebGridEditDoneEventArgsDetail"; } get rowID() { return this.y; } set rowID(a) { this.y = a; this.e("RowID"); } get cellID() { return this.o; } set cellID(a) { this.o = a; this.e("CellID"); } get rowData() { return this.x; } set rowData(a) { this.x = a; this.e("RowData"); } get oldValue() { return this.w; } set oldValue(a) { this.w = a; this.e("OldValue"); } get newValue() { return this.v; } set newValue(a) { this.v = a; this.e("NewValue"); } get column() { return this.k; } set column(a) { this.k = a; this.e("Column"); } get owner() { return this.m; } set owner(a) { this.m = a; this.e("Owner"); } get isAddRow() { return this.r; } set isAddRow(a) { this.r = a; this.e("IsAddRow"); } get valid() { return this.s; } set valid(a) { this.s = a; this.e("Valid"); } } WebGridEditDoneEventArgsDetailDescription.$t = markType(WebGridEditDoneEventArgsDetailDescription, 'WebGridEditDoneEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebGridEditDoneEventArgsDetailDescription.__marshalByValue1 = true; WebGridEditDoneEventArgsDetailDescription.__marshalByValueAlias1 = "GridEditDoneEventArgsDetail"; return WebGridEditDoneEventArgsDetailDescription; })();