UNPKG

igniteui-react-core

Version:
74 lines (73 loc) 2.38 kB
/* 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.i4 = null; this.i2 = null; this.iw = null; this.iy = null; this.i3 = null; this.i5 = null; } get editorType() { return this.i4; } set editorType(a) { this.i4 = a; this.j("EditorType"); } get editorDataSourceRef() { return this.i2; } set editorDataSourceRef(a) { this.i2 = a; this.j("EditorDataSourceRef"); } get dataSource() { return this.iw; } set dataSource(a) { this.iw = a; this.j("DataSource"); } get genericDataSource() { return this.iy; } set genericDataSource(a) { this.iy = a; this.j("GenericDataSource"); } get editorTextField() { return this.i3; } set editorTextField(a) { this.i3 = a; this.j("EditorTextField"); } get editorValueField() { return this.i5; } set editorValueField(a) { this.i5 = a; this.j("EditorValueField"); } } TextColumnDescription.$t = /*@__PURE__*/ markType(TextColumnDescription, 'TextColumnDescription', DataGridColumnDescription.$); TextColumnDescription.__canMarshalByValue1 = true; TextColumnDescription.__marshalByValueAlias1 = "TextColumn"; return TextColumnDescription; })();