igniteui-react-core
Version:
Ignite UI React Core.
184 lines (183 loc) • 5.81 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 { __extends } from "tslib";
import { CellInfoDescription } from "./CellInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
var NumericCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(NumericCellInfoDescription, _super);
function NumericCellInfoDescription() {
var _this = _super.call(this) || this;
_this.fu = 0;
_this.fq = false;
_this.f4 = null;
_this.fn = null;
_this.f3 = null;
_this.f5 = null;
_this.f7 = null;
_this.f6 = null;
_this.f8 = null;
_this.fw = 0;
_this.fx = 0;
_this.fy = 0;
_this.fr = false;
return _this;
}
NumericCellInfoDescription.prototype.get_type = function () {
return "NumericCellInfo";
};
Object.defineProperty(NumericCellInfoDescription.prototype, "numericValue", {
get: function () {
return this.fu;
},
set: function (a) {
this.fu = a;
this.g("NumericValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "hasDecimalValue", {
get: function () {
return this.fq;
},
set: function (a) {
this.fq = a;
this.g("HasDecimalValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "formatStringOverride", {
get: function () {
return this.f4;
},
set: function (a) {
this.f4 = a;
this.g("FormatStringOverride");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "formatSpecifiers", {
get: function () {
return this.fn;
},
set: function (a) {
this.fn = a;
this.g("FormatSpecifiers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "formatOverrideRef", {
get: function () {
return this.f3;
},
set: function (a) {
this.f3 = a;
this.g("FormatOverrideRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "negativePrefix", {
get: function () {
return this.f5;
},
set: function (a) {
this.f5 = a;
this.g("NegativePrefix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "positivePrefix", {
get: function () {
return this.f7;
},
set: function (a) {
this.f7 = a;
this.g("PositivePrefix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "negativeSuffix", {
get: function () {
return this.f6;
},
set: function (a) {
this.f6 = a;
this.g("NegativeSuffix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "positiveSuffix", {
get: function () {
return this.f8;
},
set: function (a) {
this.f8 = a;
this.g("PositiveSuffix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "maxFractionDigits", {
get: function () {
return this.fw;
},
set: function (a) {
this.fw = a;
this.g("MaxFractionDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "minFractionDigits", {
get: function () {
return this.fx;
},
set: function (a) {
this.fx = a;
this.g("MinFractionDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "minIntegerDigits", {
get: function () {
return this.fy;
},
set: function (a) {
this.fy = a;
this.g("MinIntegerDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "showGroupingSeparator", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.g("ShowGroupingSeparator");
},
enumerable: false,
configurable: true
});
NumericCellInfoDescription.$t = markType(NumericCellInfoDescription, 'NumericCellInfoDescription', CellInfoDescription.$);
NumericCellInfoDescription.__marshalByValue1 = true;
NumericCellInfoDescription.__marshalByValueAlias1 = "NumericCellModel";
return NumericCellInfoDescription;
}(CellInfoDescription));
export { NumericCellInfoDescription };