igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
130 lines (129 loc) • 3.85 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 EditorCellInfoDescription = /*@__PURE__*/ (() => {
class EditorCellInfoDescription extends CellInfoDescription {
constructor() {
super();
this.gr = false;
this.go = null;
this.g0 = null;
this.g6 = null;
this.g5 = null;
this.g4 = null;
this.g2 = null;
this.g3 = null;
this.gm = null;
this.g1 = null;
this.gs = false;
this.gw = 0;
this.gv = 0;
}
get_type() {
return "EditorCellInfo";
}
get isHidden() {
return this.gr;
}
set isHidden(a) {
this.gr = a;
this.j("IsHidden");
}
get editTarget() {
return this.go;
}
set editTarget(a) {
this.go = a;
this.j("EditTarget");
}
get dataType() {
return this.g0;
}
set dataType(a) {
this.g0 = a;
this.j("DataType");
}
get errorMessage() {
return this.g6;
}
set errorMessage(a) {
this.g6 = a;
this.j("ErrorMessage");
}
get editValueRef() {
return this.g5;
}
set editValueRef(a) {
this.g5 = a;
this.j("EditValueRef");
}
get editorType() {
return this.g4;
}
set editorType(a) {
this.g4 = a;
this.j("EditorType");
}
get editorDataSourceRef() {
return this.g2;
}
set editorDataSourceRef(a) {
this.g2 = a;
this.j("EditorDataSourceRef");
}
get editorTextField() {
return this.g3;
}
set editorTextField(a) {
this.g3 = a;
this.j("EditorTextField");
}
get editorValueField() {
return this.gm;
}
set editorValueField(a) {
this.gm = a;
this.j("EditorValueField");
}
get dateFormatString() {
return this.g1;
}
set dateFormatString(a) {
this.g1 = a;
this.j("DateFormatString");
}
get showTodayButton() {
return this.gs;
}
set showTodayButton(a) {
this.gs = a;
this.j("ShowTodayButton");
}
get targetRow() {
return this.gw;
}
set targetRow(a) {
this.gw = a;
this.j("TargetRow");
}
get targetColumn() {
return this.gv;
}
set targetColumn(a) {
this.gv = a;
this.j("TargetColumn");
}
}
EditorCellInfoDescription.$t = markType(EditorCellInfoDescription, 'EditorCellInfoDescription', CellInfoDescription.$);
EditorCellInfoDescription.__marshalByValue1 = true;
EditorCellInfoDescription.__marshalByValueAlias1 = "EditorCellModel";
return EditorCellInfoDescription;
})();