igniteui-react-core
Version:
Ignite UI React Core.
50 lines (49 loc) • 2.09 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 GridColumnMoveOptionsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GridColumnMoveOptionsDescription, _super);
function GridColumnMoveOptionsDescription() {
var _this = _super.call(this) || this;
_this.aw = null;
_this.ax = null;
return _this;
}
GridColumnMoveOptionsDescription.prototype.get_type = function () {
return "GridColumnMoveOptions";
};
Object.defineProperty(GridColumnMoveOptionsDescription.prototype, "moveLeftCaption", {
get: function () {
return this.aw;
},
set: function (a) {
this.aw = a;
this.g("MoveLeftCaption");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnMoveOptionsDescription.prototype, "moveRightCaption", {
get: function () {
return this.ax;
},
set: function (a) {
this.ax = a;
this.g("MoveRightCaption");
},
enumerable: false,
configurable: true
});
GridColumnMoveOptionsDescription.$t = markType(GridColumnMoveOptionsDescription, 'GridColumnMoveOptionsDescription', GridColumnOptionsSimpleSectionBaseDescription.$);
return GridColumnMoveOptionsDescription;
}(GridColumnOptionsSimpleSectionBaseDescription));
export { GridColumnMoveOptionsDescription };