igniteui-react-core
Version:
Ignite UI React Core.
82 lines (81 loc) • 2.61 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 {
get_type() {
return "ImageColumn";
}
constructor() {
super();
this.i6 = null;
this.i4 = null;
this.i2 = null;
this.iw = null;
this.iy = null;
this.i3 = null;
this.i5 = null;
}
get imageStretchOption() {
return this.i6;
}
set imageStretchOption(a) {
this.i6 = a;
this.j("ImageStretchOption");
}
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");
}
}
ImageColumnDescription.$t = /*@__PURE__*/ markType(ImageColumnDescription, 'ImageColumnDescription', DataGridColumnDescription.$);
ImageColumnDescription.__canMarshalByValue1 = true;
ImageColumnDescription.__marshalByValueAlias1 = "ImageColumn";
return ImageColumnDescription;
})();