UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

101 lines (100 loc) 3.1 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 WebRowDataCancelableEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebRowDataCancelableEventArgsDetailDescription extends Description { constructor() { super(); this.m = null; this.t = null; this.s = null; this.p = false; this.k = null; this.r = null; this.v = null; this.u = null; this.w = null; } get_type() { return "WebRowDataCancelableEventArgsDetail"; } get type() { return this.get_type(); } get cellID() { return this.m; } set cellID(a) { this.m = a; this.j("CellID"); } get oldValue() { return this.t; } set oldValue(a) { this.t = a; this.j("OldValue"); } get newValue() { return this.s; } set newValue(a) { this.s = a; this.j("NewValue"); } get isAddRow() { return this.p; } set isAddRow(a) { this.p = a; this.j("IsAddRow"); } get owner() { return this.k; } set owner(a) { this.k = a; this.j("Owner"); } get data() { return this.r; } set data(a) { this.r = a; this.j("Data"); } get rowData() { return this.v; } set rowData(a) { this.v = a; this.j("RowData"); } get primaryKey() { return this.u; } set primaryKey(a) { this.u = a; this.j("PrimaryKey"); } get rowKey() { return this.w; } set rowKey(a) { this.w = a; this.j("RowKey"); } } WebRowDataCancelableEventArgsDetailDescription.$t = markType(WebRowDataCancelableEventArgsDetailDescription, 'WebRowDataCancelableEventArgsDetailDescription', Description.$); WebRowDataCancelableEventArgsDetailDescription.__marshalByValue = true; WebRowDataCancelableEventArgsDetailDescription.__marshalByValueAlias = "RowDataCancelableEventArgsDetail"; return WebRowDataCancelableEventArgsDetailDescription; })();