igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
69 lines (68 loc) • 2.63 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var LabelFormatOverrideEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(LabelFormatOverrideEventArgsDescription, _super);
function LabelFormatOverrideEventArgsDescription() {
var _this = _super.call(this) || this;
_this.m = new Date();
_this.k = null;
_this.o = null;
return _this;
}
LabelFormatOverrideEventArgsDescription.prototype.get_type = function () {
return "LabelFormatOverrideEventArgs";
};
Object.defineProperty(LabelFormatOverrideEventArgsDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(LabelFormatOverrideEventArgsDescription.prototype, "dateTime", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("DateTime");
},
enumerable: false,
configurable: true
});
Object.defineProperty(LabelFormatOverrideEventArgsDescription.prototype, "format", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Format");
},
enumerable: false,
configurable: true
});
Object.defineProperty(LabelFormatOverrideEventArgsDescription.prototype, "label", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("Label");
},
enumerable: false,
configurable: true
});
LabelFormatOverrideEventArgsDescription.$t = markType(LabelFormatOverrideEventArgsDescription, 'LabelFormatOverrideEventArgsDescription', Description.$);
return LabelFormatOverrideEventArgsDescription;
}(Description));
export { LabelFormatOverrideEventArgsDescription };