igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
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 { DataGridColumnDescription } from "./DataGridColumnDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let TextColumnDescription = /*@__PURE__*/ (() => {
class TextColumnDescription extends DataGridColumnDescription {
constructor() {
super();
this.g8 = null;
this.g6 = null;
this.g0 = null;
this.g2 = null;
this.g7 = null;
this.g9 = null;
}
get_type() {
return "TextColumn";
}
get editorType() {
return this.g8;
}
set editorType(a) {
this.g8 = a;
this.j("EditorType");
}
get editorDataSourceRef() {
return this.g6;
}
set editorDataSourceRef(a) {
this.g6 = a;
this.j("EditorDataSourceRef");
}
get dataSource() {
return this.g0;
}
set dataSource(a) {
this.g0 = a;
this.j("DataSource");
}
get genericDataSource() {
return this.g2;
}
set genericDataSource(a) {
this.g2 = a;
this.j("GenericDataSource");
}
get editorTextField() {
return this.g7;
}
set editorTextField(a) {
this.g7 = a;
this.j("EditorTextField");
}
get editorValueField() {
return this.g9;
}
set editorValueField(a) {
this.g9 = a;
this.j("EditorValueField");
}
}
TextColumnDescription.$t = markType(TextColumnDescription, 'TextColumnDescription', DataGridColumnDescription.$);
TextColumnDescription.__canMarshalByValue1 = true;
TextColumnDescription.__marshalByValueAlias1 = "TextColumn";
return TextColumnDescription;
})();