igniteui-react-core
Version:
Ignite UI React Core.
61 lines (60 loc) • 1.88 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let CellRangeDescription = /*@__PURE__*/ (() => {
class CellRangeDescription extends Description {
get_type() {
return "CellRange";
}
get type() {
return this.get_type();
}
constructor() {
super();
this.k = 0;
this.i = 0;
this.l = 0;
this.j = 0;
}
get startColumn() {
return this.k;
}
set startColumn(a) {
this.k = a;
this.g("StartColumn");
}
get endColumn() {
return this.i;
}
set endColumn(a) {
this.i = a;
this.g("EndColumn");
}
get startRow() {
return this.l;
}
set startRow(a) {
this.l = a;
this.g("StartRow");
}
get endRow() {
return this.j;
}
set endRow(a) {
this.j = a;
this.g("EndRow");
}
}
CellRangeDescription.$t = /*@__PURE__*/ markType(CellRangeDescription, 'CellRangeDescription', Description.$);
CellRangeDescription.__marshalByValue = true;
CellRangeDescription.__marshalByValueAlias = "CellRange";
return CellRangeDescription;
})();