igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
75 lines (74 loc) • 2.23 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 {
constructor() {
super();
this.o = 0;
this.q = null;
this.s = null;
this.r = null;
this.l = false;
this.k = false;
}
get_type() {
return "FormatCellEventArgs";
}
get type() {
return this.get_type();
}
get row() {
return this.o;
}
set row(a) {
this.o = a;
this.j("Row");
}
get itemRef() {
return this.q;
}
set itemRef(a) {
this.q = a;
this.j("ItemRef");
}
get valueRef() {
return this.s;
}
set valueRef(a) {
this.s = a;
this.j("ValueRef");
}
get text() {
return this.r;
}
set text(a) {
this.r = a;
this.j("Text");
}
get isSummary() {
return this.l;
}
set isSummary(a) {
this.l = a;
this.j("IsSummary");
}
get isGroup() {
return this.k;
}
set isGroup(a) {
this.k = a;
this.j("IsGroup");
}
}
FormatCellEventArgsDescription.$t = markType(FormatCellEventArgsDescription, 'FormatCellEventArgsDescription', Description.$);
return FormatCellEventArgsDescription;
})();