UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

75 lines (74 loc) 2.32 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let GridCellValueChangingEventArgsDescription = /*@__PURE__*/ (() => { class GridCellValueChangingEventArgsDescription extends Description { constructor() { super(); this.m = 0; this.k = null; this.u = null; this.o = null; this.q = null; this.p = null; } get_type() { return "GridCellValueChangingEventArgs"; } get type() { return this.get_type(); } get editID() { return this.m; } set editID(a) { this.m = a; this.j("EditID"); } get cellInfo() { return this.k; } set cellInfo(a) { this.k = a; this.j("CellInfo"); } get columnRef() { return this.u; } set columnRef(a) { this.u = a; this.j("ColumnRef"); } get item() { return this.o; } set item(a) { this.o = a; this.j("Item"); } get oldValue() { return this.q; } set oldValue(a) { this.q = a; this.j("OldValue"); } get newValue() { return this.p; } set newValue(a) { this.p = a; this.j("NewValue"); } } GridCellValueChangingEventArgsDescription.$t = markType(GridCellValueChangingEventArgsDescription, 'GridCellValueChangingEventArgsDescription', Description.$); return GridCellValueChangingEventArgsDescription; })();