igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
73 lines (72 loc) • 2.4 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 ImageColumnDescription = /*@__PURE__*/ (() => {
class ImageColumnDescription extends DataGridColumnDescription {
constructor() {
super();
this.fl = null;
this.fj = null;
this.fh = null;
this.fe = null;
this.fi = null;
this.fk = null;
}
get_type() {
return "ImageColumn";
}
get imageStretchOption() {
return this.fl;
}
set imageStretchOption(a) {
this.fl = a;
this.e("ImageStretchOption");
}
get editorType() {
return this.fj;
}
set editorType(a) {
this.fj = a;
this.e("EditorType");
}
get editorDataSourceRef() {
return this.fh;
}
set editorDataSourceRef(a) {
this.fh = a;
this.e("EditorDataSourceRef");
}
get editorDataSource() {
return this.fe;
}
set editorDataSource(a) {
this.fe = a;
this.e("EditorDataSource");
}
get editorTextField() {
return this.fi;
}
set editorTextField(a) {
this.fi = a;
this.e("EditorTextField");
}
get editorValueField() {
return this.fk;
}
set editorValueField(a) {
this.fk = a;
this.e("EditorValueField");
}
}
ImageColumnDescription.$t = markType(ImageColumnDescription, 'ImageColumnDescription', DataGridColumnDescription.$);
ImageColumnDescription.__canMarshalByValue1 = true;
return ImageColumnDescription;
})();