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.gz = 0;
_this.gv = false;
_this.g9 = null;
_this.gs = null;
_this.g8 = null;
_this.ha = null;
_this.hc = null;
_this.hb = null;
_this.hd = null;
_this.g1 = 0;
_this.g2 = 0;
_this.g3 = 0;
_this.gw = false;
return _this;
}
NumericCellInfoDescription.prototype.get_type = function () {
return "NumericCellInfo";
};
Object.defineProperty(NumericCellInfoDescription.prototype, "numericValue", {
get: function () {
return this.gz;
},
set: function (a) {
this.gz = a;
this.j("NumericValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "hasDecimalValue", {
get: function () {
return this.gv;
},
set: function (a) {
this.gv = a;
this.j("HasDecimalValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "formatStringOverride", {
get: function () {
return this.g9;
},
set: function (a) {
this.g9 = a;
this.j("FormatStringOverride");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "formatSpecifiers", {
get: function () {
return this.gs;
},
set: function (a) {
this.gs = a;
this.j("FormatSpecifiers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "formatOverrideRef", {
get: function () {
return this.g8;
},
set: function (a) {
this.g8 = a;
this.j("FormatOverrideRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "negativePrefix", {
get: function () {
return this.ha;
},
set: function (a) {
this.ha = a;
this.j("NegativePrefix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "positivePrefix", {
get: function () {
return this.hc;
},
set: function (a) {
this.hc = a;
this.j("PositivePrefix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "negativeSuffix", {
get: function () {
return this.hb;
},
set: function (a) {
this.hb = a;
this.j("NegativeSuffix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "positiveSuffix", {
get: function () {
return this.hd;
},
set: function (a) {
this.hd = a;
this.j("PositiveSuffix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "maxFractionDigits", {
get: function () {
return this.g1;
},
set: function (a) {
this.g1 = a;
this.j("MaxFractionDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "minFractionDigits", {
get: function () {
return this.g2;
},
set: function (a) {
this.g2 = a;
this.j("MinFractionDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "minIntegerDigits", {
get: function () {
return this.g3;
},
set: function (a) {
this.g3 = a;
this.j("MinIntegerDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "showGroupingSeparator", {
get: function () {
return this.gw;
},
set: function (a) {
this.gw = a;
this.j("ShowGroupingSeparator");
},
enumerable: false,
configurable: true
});
NumericCellInfoDescription.$t = markType(NumericCellInfoDescription, 'NumericCellInfoDescription', CellInfoDescription.$);
NumericCellInfoDescription.__marshalByValue1 = true;
NumericCellInfoDescription.__marshalByValueAlias1 = "NumericCellModel";
return NumericCellInfoDescription;
}(CellInfoDescription));
export { NumericCellInfoDescription };