igniteui-react-core
Version:
Ignite UI React Core.
64 lines (63 loc) • 2.35 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 { __extends } from "tslib";
import { CellInfoDescription } from "./CellInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ImageCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ImageCellInfoDescription, _super);
function ImageCellInfoDescription() {
var _this = _super.call(this) || this;
_this.fp = null;
_this.fr = null;
_this.fq = null;
return _this;
}
ImageCellInfoDescription.prototype.get_type = function () {
return "ImageCellInfo";
};
Object.defineProperty(ImageCellInfoDescription.prototype, "imagePath", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.g("ImagePath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ImageCellInfoDescription.prototype, "imageStretchOption", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.g("ImageStretchOption");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ImageCellInfoDescription.prototype, "imageResourceType", {
get: function () {
return this.fq;
},
set: function (a) {
this.fq = a;
this.g("ImageResourceType");
},
enumerable: false,
configurable: true
});
ImageCellInfoDescription.$t = markType(ImageCellInfoDescription, 'ImageCellInfoDescription', CellInfoDescription.$);
ImageCellInfoDescription.__marshalByValue1 = true;
ImageCellInfoDescription.__marshalByValueAlias1 = "ImageCellModel";
return ImageCellInfoDescription;
}(CellInfoDescription));
export { ImageCellInfoDescription };