UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

66 lines (65 loc) 2.23 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 ComboBoxColumnDescription = /*@__PURE__*/ (() => { class ComboBoxColumnDescription extends DataGridColumnDescription { constructor() { super(); this.g6 = null; this.g0 = null; this.g2 = null; this.g7 = null; this.g8 = null; } get_type() { return "ComboBoxColumn"; } get dataSourceRef() { return this.g6; } set dataSourceRef(a) { this.g6 = a; this.j("DataSourceRef"); } 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 textField() { return this.g7; } set textField(a) { this.g7 = a; this.j("TextField"); } get valueField() { return this.g8; } set valueField(a) { this.g8 = a; this.j("ValueField"); } } ComboBoxColumnDescription.$t = markType(ComboBoxColumnDescription, 'ComboBoxColumnDescription', DataGridColumnDescription.$); ComboBoxColumnDescription.__canMarshalByValue1 = true; ComboBoxColumnDescription.__marshalByValueAlias1 = "ComboBoxColumn"; return ComboBoxColumnDescription; })();