igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
65 lines (64 loc) • 2.17 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 { DataGridColumnDescription } from "./DataGridColumnDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let TextColumnDescription = /*@__PURE__*/ (() => {
class TextColumnDescription extends DataGridColumnDescription {
constructor() {
super();
this.fj = null;
this.fh = null;
this.fe = null;
this.fi = null;
this.fk = null;
}
get_type() {
return "TextColumn";
}
get editorType() {
return this.fj;
}
set editorType(a) {
this.fj = a;
this.e("EditorType");
}
get editorDataSourceRef() {
return this.fh;
}
set editorDataSourceRef(a) {
this.fh = a;
this.e("EditorDataSourceRef");
}
get editorDataSource() {
return this.fe;
}
set editorDataSource(a) {
this.fe = a;
this.e("EditorDataSource");
}
get editorTextField() {
return this.fi;
}
set editorTextField(a) {
this.fi = a;
this.e("EditorTextField");
}
get editorValueField() {
return this.fk;
}
set editorValueField(a) {
this.fk = a;
this.e("EditorValueField");
}
}
TextColumnDescription.$t = markType(TextColumnDescription, 'TextColumnDescription', DataGridColumnDescription.$);
TextColumnDescription.__canMarshalByValue1 = true;
return TextColumnDescription;
})();