igniteui-react-core
Version:
Ignite UI React Core.
75 lines (74 loc) • 2.17 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 FormatCellEventArgsDescription = /*@__PURE__*/ (() => {
class FormatCellEventArgsDescription extends Description {
get_type() {
return "FormatCellEventArgs";
}
get type() {
return this.get_type();
}
constructor() {
super();
this.l = 0;
this.n = null;
this.p = null;
this.o = null;
this.i = false;
this.h = false;
}
get row() {
return this.l;
}
set row(a) {
this.l = a;
this.g("Row");
}
get itemRef() {
return this.n;
}
set itemRef(a) {
this.n = a;
this.g("ItemRef");
}
get valueRef() {
return this.p;
}
set valueRef(a) {
this.p = a;
this.g("ValueRef");
}
get text() {
return this.o;
}
set text(a) {
this.o = a;
this.g("Text");
}
get isSummary() {
return this.i;
}
set isSummary(a) {
this.i = a;
this.g("IsSummary");
}
get isGroup() {
return this.h;
}
set isGroup(a) {
this.h = a;
this.g("IsGroup");
}
}
FormatCellEventArgsDescription.$t = /*@__PURE__*/ markType(FormatCellEventArgsDescription, 'FormatCellEventArgsDescription', Description.$);
return FormatCellEventArgsDescription;
})();