UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

48 lines (47 loc) 1.79 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 { EventArgs, markType } from "igniteui-react-core"; /** * @hidden */ export let GridSelectedCellRangesChangedEventArgs = /*@__PURE__*/ (() => { class GridSelectedCellRangesChangedEventArgs extends EventArgs { constructor() { super(...arguments); this._currentRanges = null; this._addedRanges = null; this._removedRanges = null; this._updatedRanges = null; } get currentRanges() { return this._currentRanges; } set currentRanges(a) { this._currentRanges = a; } get addedRanges() { return this._addedRanges; } set addedRanges(a) { this._addedRanges = a; } get removedRanges() { return this._removedRanges; } set removedRanges(a) { this._removedRanges = a; } get updatedRanges() { return this._updatedRanges; } set updatedRanges(a) { this._updatedRanges = a; } } GridSelectedCellRangesChangedEventArgs.$t = /*@__PURE__*/ markType(GridSelectedCellRangesChangedEventArgs, 'GridSelectedCellRangesChangedEventArgs', EventArgs.$); return GridSelectedCellRangesChangedEventArgs; })();