UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

106 lines (105 loc) 3.27 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.ac = null; this.aa = null; this.ad = null; this.r = null; this.ab = null; this.z = null; this.y = null; this.p = null; this.u = false; this.v = false; } get_type() { return "WebGridEditDoneEventArgsDetail"; } get rowID() { return this.ac; } set rowID(a) { this.ac = a; this.j("RowID"); } get primaryKey() { return this.aa; } set primaryKey(a) { this.aa = a; this.j("PrimaryKey"); } get rowKey() { return this.ad; } set rowKey(a) { this.ad = a; this.j("RowKey"); } get cellID() { return this.r; } set cellID(a) { this.r = a; this.j("CellID"); } get rowData() { return this.ab; } set rowData(a) { this.ab = a; this.j("RowData"); } get oldValue() { return this.z; } set oldValue(a) { this.z = a; this.j("OldValue"); } get newValue() { return this.y; } set newValue(a) { this.y = a; this.j("NewValue"); } get column() { return this.p; } set column(a) { this.p = a; this.j("Column"); } get isAddRow() { return this.u; } set isAddRow(a) { this.u = a; this.j("IsAddRow"); } get valid() { return this.v; } set valid(a) { this.v = a; this.j("Valid"); } } WebGridEditDoneEventArgsDetailDescription.$t = markType(WebGridEditDoneEventArgsDetailDescription, 'WebGridEditDoneEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebGridEditDoneEventArgsDetailDescription.__marshalByValue1 = true; WebGridEditDoneEventArgsDetailDescription.__marshalByValueAlias1 = "GridEditDoneEventArgsDetail"; return WebGridEditDoneEventArgsDetailDescription; })();