UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

112 lines (111 loc) 3.81 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.ha = null; _this.g8 = null; _this.g6 = null; _this.g0 = null; _this.g2 = null; _this.g7 = null; _this.g9 = null; return _this; } ImageColumnDescription.prototype.get_type = function () { return "ImageColumn"; }; Object.defineProperty(ImageColumnDescription.prototype, "imageStretchOption", { get: function () { return this.ha; }, set: function (a) { this.ha = a; this.j("ImageStretchOption"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "editorType", { get: function () { return this.g8; }, set: function (a) { this.g8 = a; this.j("EditorType"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "editorDataSourceRef", { get: function () { return this.g6; }, set: function (a) { this.g6 = a; this.j("EditorDataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "dataSource", { get: function () { return this.g0; }, set: function (a) { this.g0 = a; this.j("DataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "genericDataSource", { get: function () { return this.g2; }, set: function (a) { this.g2 = a; this.j("GenericDataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "editorTextField", { get: function () { return this.g7; }, set: function (a) { this.g7 = a; this.j("EditorTextField"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageColumnDescription.prototype, "editorValueField", { get: function () { return this.g9; }, set: function (a) { this.g9 = a; this.j("EditorValueField"); }, enumerable: false, configurable: true }); ImageColumnDescription.$t = markType(ImageColumnDescription, 'ImageColumnDescription', DataGridColumnDescription.$); ImageColumnDescription.__canMarshalByValue1 = true; ImageColumnDescription.__marshalByValueAlias1 = "ImageColumn"; return ImageColumnDescription; }(DataGridColumnDescription)); export { ImageColumnDescription };