UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

58 lines (57 loc) 2.13 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 { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription"; import { markType } from "./type"; /** * @hidden */ export let WebGridKeydownEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebGridKeydownEventArgsDetailDescription extends WebBaseEventArgsDetailDescription { constructor() { super(); this.x = null; this.t = null; this.s = null; this.q = false; } get_type() { return "WebGridKeydownEventArgsDetail"; } get targetType() { return this.x; } set targetType(a) { this.x = a; this.j("TargetType"); } get target() { return this.t; } set target(a) { this.t = a; this.j("Target"); } get event() { return this.s; } set event(a) { this.s = a; this.j("Event"); } get cancel() { return this.q; } set cancel(a) { this.q = a; this.j("Cancel"); } } WebGridKeydownEventArgsDetailDescription.$t = markType(WebGridKeydownEventArgsDetailDescription, 'WebGridKeydownEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebGridKeydownEventArgsDetailDescription.__marshalByValue1 = true; WebGridKeydownEventArgsDetailDescription.__marshalByValueAlias1 = "GridKeydownEventArgsDetail"; return WebGridKeydownEventArgsDetailDescription; })();