UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

82 lines (81 loc) 2.67 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 ImageColumnDescription = /*@__PURE__*/ (() => { class ImageColumnDescription extends DataGridColumnDescription { constructor() { super(); this.ha = null; this.g8 = null; this.g6 = null; this.g0 = null; this.g2 = null; this.g7 = null; this.g9 = null; } get_type() { return "ImageColumn"; } get imageStretchOption() { return this.ha; } set imageStretchOption(a) { this.ha = a; this.j("ImageStretchOption"); } 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"); } } ImageColumnDescription.$t = markType(ImageColumnDescription, 'ImageColumnDescription', DataGridColumnDescription.$); ImageColumnDescription.__canMarshalByValue1 = true; ImageColumnDescription.__marshalByValueAlias1 = "ImageColumn"; return ImageColumnDescription; })();