UNPKG

igniteui-angular-spreadsheet

Version:

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

38 lines (37 loc) 1.51 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 { __extends } from "tslib"; import { Base, markType } from "igniteui-angular-core"; import { WorksheetRegionAddress } from "igniteui-angular-excel"; import { WorksheetCellAddress } from "igniteui-angular-excel"; /** * @hidden */ var SortTargetResult = /** @class */ /*@__PURE__*/ (function (_super) { __extends(SortTargetResult, _super); function SortTargetResult(a, b, c, d, e, f) { var _this = _super.call(this) || this; _this.e = null; _this.d = new WorksheetRegionAddress(); _this.b = null; _this.c = new WorksheetCellAddress(); _this.g = 0; _this.a = 0; _this.f = false; _this.e = a; _this.d = c; _this.c = d; _this.g = e; _this.b = b; _this.a = f; _this.f = _this.g > 0; return _this; } SortTargetResult.$t = markType(SortTargetResult, 'SortTargetResult'); return SortTargetResult; }(Base)); export { SortTargetResult };