igniteui-react-core
Version:
Ignite UI React Core.
52 lines (51 loc) • 2.28 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 { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebColumnMovingEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebColumnMovingEventArgsDetailDescription, _super);
function WebColumnMovingEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.m = null;
_this.p = false;
return _this;
}
WebColumnMovingEventArgsDetailDescription.prototype.get_type = function () {
return "WebColumnMovingEventArgsDetail";
};
Object.defineProperty(WebColumnMovingEventArgsDetailDescription.prototype, "source", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("Source");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebColumnMovingEventArgsDetailDescription.prototype, "cancel", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("Cancel");
},
enumerable: false,
configurable: true
});
WebColumnMovingEventArgsDetailDescription.$t = markType(WebColumnMovingEventArgsDetailDescription, 'WebColumnMovingEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebColumnMovingEventArgsDetailDescription.__marshalByValue1 = true;
WebColumnMovingEventArgsDetailDescription.__marshalByValueAlias1 = "ColumnMovingEventArgsDetail";
return WebColumnMovingEventArgsDetailDescription;
}(WebBaseEventArgsDetailDescription));
export { WebColumnMovingEventArgsDetailDescription };