igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
184 lines (183 loc) • 5.99 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.gt = 0;
_this.gp = false;
_this.g3 = null;
_this.gm = null;
_this.g2 = null;
_this.g4 = null;
_this.g6 = null;
_this.g5 = null;
_this.g7 = null;
_this.gv = 0;
_this.gw = 0;
_this.gx = 0;
_this.gq = false;
return _this;
}
NumericCellInfoDescription.prototype.get_type = function () {
return "NumericCellInfo";
};
Object.defineProperty(NumericCellInfoDescription.prototype, "numericValue", {
get: function () {
return this.gt;
},
set: function (a) {
this.gt = a;
this.j("NumericValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "hasDecimalValue", {
get: function () {
return this.gp;
},
set: function (a) {
this.gp = a;
this.j("HasDecimalValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "formatStringOverride", {
get: function () {
return this.g3;
},
set: function (a) {
this.g3 = a;
this.j("FormatStringOverride");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "formatSpecifiers", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.j("FormatSpecifiers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "formatOverrideRef", {
get: function () {
return this.g2;
},
set: function (a) {
this.g2 = a;
this.j("FormatOverrideRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "negativePrefix", {
get: function () {
return this.g4;
},
set: function (a) {
this.g4 = a;
this.j("NegativePrefix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "positivePrefix", {
get: function () {
return this.g6;
},
set: function (a) {
this.g6 = a;
this.j("PositivePrefix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "negativeSuffix", {
get: function () {
return this.g5;
},
set: function (a) {
this.g5 = a;
this.j("NegativeSuffix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "positiveSuffix", {
get: function () {
return this.g7;
},
set: function (a) {
this.g7 = a;
this.j("PositiveSuffix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "maxFractionDigits", {
get: function () {
return this.gv;
},
set: function (a) {
this.gv = a;
this.j("MaxFractionDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "minFractionDigits", {
get: function () {
return this.gw;
},
set: function (a) {
this.gw = a;
this.j("MinFractionDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "minIntegerDigits", {
get: function () {
return this.gx;
},
set: function (a) {
this.gx = a;
this.j("MinIntegerDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericCellInfoDescription.prototype, "showGroupingSeparator", {
get: function () {
return this.gq;
},
set: function (a) {
this.gq = 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 };