igniteui-react-core
Version:
Ignite UI React Core.
61 lines (60 loc) • 2.05 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 WebGridSelectionRangeDetailDescription = /*@__PURE__*/ (() => {
class WebGridSelectionRangeDetailDescription extends Description {
get_type() {
return "WebGridSelectionRangeDetail";
}
get type() {
return this.get_type();
}
constructor() {
super();
this.l = 0;
this.k = 0;
this.j = 0;
this.i = 0;
}
get rowStart() {
return this.l;
}
set rowStart(a) {
this.l = a;
this.g("RowStart");
}
get rowEnd() {
return this.k;
}
set rowEnd(a) {
this.k = a;
this.g("RowEnd");
}
get columnStart() {
return this.j;
}
set columnStart(a) {
this.j = a;
this.g("ColumnStart");
}
get columnEnd() {
return this.i;
}
set columnEnd(a) {
this.i = a;
this.g("ColumnEnd");
}
}
WebGridSelectionRangeDetailDescription.$t = /*@__PURE__*/ markType(WebGridSelectionRangeDetailDescription, 'WebGridSelectionRangeDetailDescription', Description.$);
WebGridSelectionRangeDetailDescription.__marshalByValue = true;
WebGridSelectionRangeDetailDescription.__marshalByValueAlias = "GridSelectionRangeDetail";
return WebGridSelectionRangeDetailDescription;
})();