UNPKG

igniteui-angular-spreadsheet

Version:

Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.

41 lines (40 loc) 1.48 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 { SpreadsheetText } from "./SpreadsheetText"; import { typeCast, markType } from "igniteui-angular-core"; /** * @hidden */ export let JsSpreadsheetText = /*@__PURE__*/ (() => { class JsSpreadsheetText extends SpreadsheetText { constructor() { super(...arguments); this.e = 0; this.f = 0; this.g = null; this.d = false; } equals(a) { let b = typeCast(JsSpreadsheetText.$, a); return b != null && b.g == this.g && b.e == this.e && b.f == this.f; } get_b() { return this.e; } get b() { return this.get_b(); } get_c() { return this.f; } get c() { return this.get_c(); } } JsSpreadsheetText.$t = markType(JsSpreadsheetText, 'JsSpreadsheetText', SpreadsheetText.$); return JsSpreadsheetText; })();