UNPKG

igniteui-react-core

Version:
64 lines (63 loc) 2.6 kB
/* 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 WebGridScrollEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebGridScrollEventArgsDetailDescription, _super); function WebGridScrollEventArgsDetailDescription() { var _this = _super.call(this) || this; _this.s = null; _this.p = null; _this.n = 0; return _this; } WebGridScrollEventArgsDetailDescription.prototype.get_type = function () { return "WebGridScrollEventArgsDetail"; }; Object.defineProperty(WebGridScrollEventArgsDetailDescription.prototype, "direction", { get: function () { return this.s; }, set: function (a) { this.s = a; this.g("Direction"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridScrollEventArgsDetailDescription.prototype, "event", { get: function () { return this.p; }, set: function (a) { this.p = a; this.g("Event"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridScrollEventArgsDetailDescription.prototype, "scrollPosition", { get: function () { return this.n; }, set: function (a) { this.n = a; this.g("ScrollPosition"); }, enumerable: false, configurable: true }); WebGridScrollEventArgsDetailDescription.$t = markType(WebGridScrollEventArgsDetailDescription, 'WebGridScrollEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebGridScrollEventArgsDetailDescription.__marshalByValue1 = true; WebGridScrollEventArgsDetailDescription.__marshalByValueAlias1 = "GridScrollEventArgsDetail"; return WebGridScrollEventArgsDetailDescription; }(WebBaseEventArgsDetailDescription)); export { WebGridScrollEventArgsDetailDescription };