igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
50 lines (49 loc) • 2.12 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 { GridColumnOptionsSimpleSectionBaseDescription } from "./GridColumnOptionsSimpleSectionBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GridColumnPinOptionsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GridColumnPinOptionsDescription, _super);
function GridColumnPinOptionsDescription() {
var _this = _super.call(this) || this;
_this.aw = null;
_this.ax = null;
return _this;
}
GridColumnPinOptionsDescription.prototype.get_type = function () {
return "GridColumnPinOptions";
};
Object.defineProperty(GridColumnPinOptionsDescription.prototype, "pinLeftCaption", {
get: function () {
return this.aw;
},
set: function (a) {
this.aw = a;
this.g("PinLeftCaption");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnPinOptionsDescription.prototype, "pinRightCaption", {
get: function () {
return this.ax;
},
set: function (a) {
this.ax = a;
this.g("PinRightCaption");
},
enumerable: false,
configurable: true
});
GridColumnPinOptionsDescription.$t = markType(GridColumnPinOptionsDescription, 'GridColumnPinOptionsDescription', GridColumnOptionsSimpleSectionBaseDescription.$);
return GridColumnPinOptionsDescription;
}(GridColumnOptionsSimpleSectionBaseDescription));
export { GridColumnPinOptionsDescription };