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.57 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 { __extends } from "tslib";
import { Base, markType } from "igniteui-angular-core";
import { WorksheetRegionAddress } from "igniteui-angular-excel";
/**
* @hidden
*/
var CellRegionMapBase = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CellRegionMapBase, _super);
function CellRegionMapBase() {
return _super !== null && _super.apply(this, arguments) || this;
}
CellRegionMapBase.prototype.f = function (a) {
var b = this.b;
for (var c = 0; c < b.length; c++) {
if (b[c]._h(a)) {
return true;
}
}
return false;
};
CellRegionMapBase.prototype.e = function (a, b) {
var c = this.b;
for (var d = 0; d < c.length; d++) {
if (c[d]._i(a, b)) {
return c[d];
}
}
return WorksheetRegionAddress._b;
};
CellRegionMapBase.$t = markType(CellRegionMapBase, 'CellRegionMapBase');
return CellRegionMapBase;
}(Base));
export { CellRegionMapBase };