UNPKG

igniteui-react-core

Version:
100 lines (99 loc) 3.37 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 { __extends } from "tslib"; import { DataGridColumnDescription } from "./DataGridColumnDescription"; import { markType } from "./type"; /** * @hidden */ var ImageColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ImageColumnDescription, _super); function ImageColumnDescription() { var _this = _super.call(this) || this; _this.gb = null; _this.f9 = null; _this.f7 = null; _this.f3 = null; _this.f8 = null; _this.ga = null; return _this; } ImageColumnDescription.prototype.get_type = function () { return "ImageColumn"; }; Object.defineProperty(ImageColumnDescription.prototype, "imageStretchOption", { get: function () { return this.gb; }, set: function (a) { this.gb = a; this.g("ImageStretchOption"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "editorType", { get: function () { return this.f9; }, set: function (a) { this.f9 = a; this.g("EditorType"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "editorDataSourceRef", { get: function () { return this.f7; }, set: function (a) { this.f7 = a; this.g("EditorDataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "editorDataSource", { get: function () { return this.f3; }, set: function (a) { this.f3 = a; this.g("EditorDataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "editorTextField", { get: function () { return this.f8; }, set: function (a) { this.f8 = a; this.g("EditorTextField"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "editorValueField", { get: function () { return this.ga; }, set: function (a) { this.ga = a; this.g("EditorValueField"); }, enumerable: false, configurable: true }); ImageColumnDescription.$t = markType(ImageColumnDescription, 'ImageColumnDescription', DataGridColumnDescription.$); ImageColumnDescription.__canMarshalByValue1 = true; ImageColumnDescription.__marshalByValueAlias1 = "ImageColumn"; return ImageColumnDescription; }(DataGridColumnDescription)); export { ImageColumnDescription };