igniteui-react-core
Version:
Ignite UI React Core.
64 lines (63 loc) • 2.61 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 WebRowDragEndEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebRowDragEndEventArgsDetailDescription, _super);
function WebRowDragEndEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.r = null;
_this.m = null;
_this.p = false;
return _this;
}
WebRowDragEndEventArgsDetailDescription.prototype.get_type = function () {
return "WebRowDragEndEventArgsDetail";
};
Object.defineProperty(WebRowDragEndEventArgsDetailDescription.prototype, "dragDirective", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.g("DragDirective");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRowDragEndEventArgsDetailDescription.prototype, "dragData", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("DragData");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRowDragEndEventArgsDetailDescription.prototype, "animation", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("Animation");
},
enumerable: false,
configurable: true
});
WebRowDragEndEventArgsDetailDescription.$t = markType(WebRowDragEndEventArgsDetailDescription, 'WebRowDragEndEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebRowDragEndEventArgsDetailDescription.__marshalByValue1 = true;
WebRowDragEndEventArgsDetailDescription.__marshalByValueAlias1 = "RowDragEndEventArgsDetail";
return WebRowDragEndEventArgsDetailDescription;
}(WebBaseEventArgsDetailDescription));
export { WebRowDragEndEventArgsDetailDescription };