igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.44 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 DateTimeCellInfoDescription = /*@__PURE__*/ (() => {
class DateTimeCellInfoDescription extends CellInfoDescription {
get_type() {
return "DateTimeCellInfo";
}
constructor() {
super();
this.gx = new Date();
this.g2 = null;
this.gs = null;
this.g1 = null;
this.g0 = null;
this.gv = false;
}
get dateTimeValue() {
return this.gx;
}
set dateTimeValue(a) {
this.gx = a;
this.j("DateTimeValue");
}
get formatStringOverride() {
return this.g2;
}
set formatStringOverride(a) {
this.g2 = a;
this.j("FormatStringOverride");
}
get formatSpecifiers() {
return this.gs;
}
set formatSpecifiers(a) {
this.gs = a;
this.j("FormatSpecifiers");
}
get formatOverrideRef() {
return this.g1;
}
set formatOverrideRef(a) {
this.g1 = a;
this.j("FormatOverrideRef");
}
get dateTimeFormat() {
return this.g0;
}
set dateTimeFormat(a) {
this.g0 = a;
this.j("DateTimeFormat");
}
get isOffsetValue() {
return this.gv;
}
set isOffsetValue(a) {
this.gv = a;
this.j("IsOffsetValue");
}
}
DateTimeCellInfoDescription.$t = /*@__PURE__*/ markType(DateTimeCellInfoDescription, 'DateTimeCellInfoDescription', CellInfoDescription.$);
DateTimeCellInfoDescription.__marshalByValue1 = true;
DateTimeCellInfoDescription.__marshalByValueAlias1 = "DateTimeCellModel";
return DateTimeCellInfoDescription;
})();