igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
40 lines (39 loc) • 1.53 kB
JavaScript
/*
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 { Base, markType } from "igniteui-angular-core";
import { Color } from "igniteui-angular-core";
import { ExcelUtils } from "igniteui-angular-excel";
/**
* @hidden
*/
export let SpreadsheetCellRenderInfo = /*@__PURE__*/ (() => {
class SpreadsheetCellRenderInfo extends Base {
constructor() {
super(...arguments);
this.f = null;
this.d = 0;
this.m = new Color();
this.e = 0;
this.n = new Color();
this.k = 0;
this.h = 0;
this.i = 0;
this.j = 0;
this.g = null;
this.c = 0;
this.l = new Color();
this.a = 0;
}
static b() {
let a = new SpreadsheetCellRenderInfo();
a.l = a.m = a.n = ExcelUtils.gz;
return a;
}
}
SpreadsheetCellRenderInfo.$t = markType(SpreadsheetCellRenderInfo, 'SpreadsheetCellRenderInfo');
return SpreadsheetCellRenderInfo;
})();