igniteui-react-core
Version:
Ignite UI React Core.
122 lines (121 loc) • 3.49 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 { CellInfoDescription } from "./CellInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let FilterCellInfoDescription = /*@__PURE__*/ (() => {
class FilterCellInfoDescription extends CellInfoDescription {
get_type() {
return "FilterCellInfo";
}
constructor() {
super();
this.hc = null;
this.gu = null;
this.gw = null;
this.gs = null;
this.he = null;
this.hd = null;
this.g4 = 0;
this.g3 = 0;
this.g2 = 0;
this.g1 = 0;
this.g0 = 0;
this.gz = 0;
}
get dataType() {
return this.hc;
}
set dataType(a) {
this.hc = a;
this.j("DataType");
}
get filter() {
return this.gu;
}
set filter(a) {
this.gu = a;
this.j("Filter");
}
get filterExpression() {
return this.gw;
}
set filterExpression(a) {
this.gw = a;
this.j("FilterExpression");
}
get filterOperands() {
return this.gs;
}
set filterOperands(a) {
this.gs = a;
this.j("FilterOperands");
}
get operatorType() {
return this.he;
}
set operatorType(a) {
this.he = a;
this.j("OperatorType");
}
get filterValueRef() {
return this.hd;
}
set filterValueRef(a) {
this.hd = a;
this.j("FilterValueRef");
}
get selectorTop() {
return this.g4;
}
set selectorTop(a) {
this.g4 = a;
this.j("SelectorTop");
}
get selectorLeft() {
return this.g3;
}
set selectorLeft(a) {
this.g3 = a;
this.j("SelectorLeft");
}
get editorTop() {
return this.g2;
}
set editorTop(a) {
this.g2 = a;
this.j("EditorTop");
}
get editorLeft() {
return this.g1;
}
set editorLeft(a) {
this.g1 = a;
this.j("EditorLeft");
}
get clearIconTop() {
return this.g0;
}
set clearIconTop(a) {
this.g0 = a;
this.j("ClearIconTop");
}
get clearIconLeft() {
return this.gz;
}
set clearIconLeft(a) {
this.gz = a;
this.j("ClearIconLeft");
}
}
FilterCellInfoDescription.$t = /*@__PURE__*/ markType(FilterCellInfoDescription, 'FilterCellInfoDescription', CellInfoDescription.$);
FilterCellInfoDescription.__marshalByValue1 = true;
FilterCellInfoDescription.__marshalByValueAlias1 = "FilterCellModel";
return FilterCellInfoDescription;
})();