igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
61 lines (60 loc) • 1.92 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 {
constructor() {
super();
this.n = 0;
this.l = 0;
this.o = 0;
this.m = 0;
}
get_type() {
return "CellRange";
}
get type() {
return this.get_type();
}
get startColumn() {
return this.n;
}
set startColumn(a) {
this.n = a;
this.j("StartColumn");
}
get endColumn() {
return this.l;
}
set endColumn(a) {
this.l = a;
this.j("EndColumn");
}
get startRow() {
return this.o;
}
set startRow(a) {
this.o = a;
this.j("StartRow");
}
get endRow() {
return this.m;
}
set endRow(a) {
this.m = a;
this.j("EndRow");
}
}
CellRangeDescription.$t = markType(CellRangeDescription, 'CellRangeDescription', Description.$);
CellRangeDescription.__marshalByValue = true;
CellRangeDescription.__marshalByValueAlias = "CellRange";
return CellRangeDescription;
})();