igniteui-react-core
Version:
Ignite UI React Core.
66 lines (65 loc) • 2.19 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 {
get_type() {
return "TextColumn";
}
constructor() {
super();
this.f9 = null;
this.f7 = null;
this.f3 = null;
this.f8 = null;
this.ga = null;
}
get editorType() {
return this.f9;
}
set editorType(a) {
this.f9 = a;
this.g("EditorType");
}
get editorDataSourceRef() {
return this.f7;
}
set editorDataSourceRef(a) {
this.f7 = a;
this.g("EditorDataSourceRef");
}
get editorDataSource() {
return this.f3;
}
set editorDataSource(a) {
this.f3 = a;
this.g("EditorDataSource");
}
get editorTextField() {
return this.f8;
}
set editorTextField(a) {
this.f8 = a;
this.g("EditorTextField");
}
get editorValueField() {
return this.ga;
}
set editorValueField(a) {
this.ga = a;
this.g("EditorValueField");
}
}
TextColumnDescription.$t = /*@__PURE__*/ markType(TextColumnDescription, 'TextColumnDescription', DataGridColumnDescription.$);
TextColumnDescription.__canMarshalByValue1 = true;
TextColumnDescription.__marshalByValueAlias1 = "TextColumn";
return TextColumnDescription;
})();