igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
100 lines (99 loc) • 3.99 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 { WebFloatingPaneResizeEventArgsDetailDescription } from "./WebFloatingPaneResizeEventArgsDetailDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebFloatingPaneResizeMoveEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebFloatingPaneResizeMoveEventArgsDetailDescription, _super);
function WebFloatingPaneResizeMoveEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.z = 0;
_this.x = 0;
_this.y = 0;
_this.w = 0;
_this.s = null;
_this.r = null;
return _this;
}
WebFloatingPaneResizeMoveEventArgsDetailDescription.prototype.get_type = function () {
return "WebFloatingPaneResizeMoveEventArgsDetail";
};
Object.defineProperty(WebFloatingPaneResizeMoveEventArgsDetailDescription.prototype, "oldWidth", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("OldWidth");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFloatingPaneResizeMoveEventArgsDetailDescription.prototype, "newWidth", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("NewWidth");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFloatingPaneResizeMoveEventArgsDetailDescription.prototype, "oldHeight", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("OldHeight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFloatingPaneResizeMoveEventArgsDetailDescription.prototype, "newHeight", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("NewHeight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFloatingPaneResizeMoveEventArgsDetailDescription.prototype, "oldLocation", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("OldLocation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFloatingPaneResizeMoveEventArgsDetailDescription.prototype, "newLocation", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("NewLocation");
},
enumerable: false,
configurable: true
});
WebFloatingPaneResizeMoveEventArgsDetailDescription.$t = markType(WebFloatingPaneResizeMoveEventArgsDetailDescription, 'WebFloatingPaneResizeMoveEventArgsDetailDescription', WebFloatingPaneResizeEventArgsDetailDescription.$);
WebFloatingPaneResizeMoveEventArgsDetailDescription.__marshalByValue1 = true;
WebFloatingPaneResizeMoveEventArgsDetailDescription.__marshalByValueAlias1 = "FloatingPaneResizeMoveEventArgsDetail";
return WebFloatingPaneResizeMoveEventArgsDetailDescription;
}(WebFloatingPaneResizeEventArgsDetailDescription));
export { WebFloatingPaneResizeMoveEventArgsDetailDescription };