UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

91 lines (90 loc) 2.63 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let HighlightingInfoDescription = /*@__PURE__*/ (() => { class HighlightingInfoDescription extends Description { constructor() { super(); this.t = 0; this.s = 0; this.x = null; this.q = 0; this.m = false; this.l = false; this.k = false; this.w = null; } get_type() { return "HighlightingInfo"; } get type() { return this.get_type(); } get startIndex() { return this.t; } set startIndex(a) { this.t = a; this.j("StartIndex"); } get endIndex() { return this.s; } set endIndex(a) { this.s = a; this.j("EndIndex"); } get state() { return this.x; } set state(a) { this.x = a; this.j("State"); } get progress() { return this.q; } set progress(a) { this.q = a; this.j("Progress"); } get isMarker() { return this.m; } set isMarker(a) { this.m = a; this.j("IsMarker"); } get isFullRange() { return this.l; } set isFullRange(a) { this.l = a; this.j("IsFullRange"); } get isExclusive() { return this.k; } set isExclusive(a) { this.k = a; this.j("IsExclusive"); } get contextRef() { return this.w; } set contextRef(a) { this.w = a; this.j("ContextRef"); } } HighlightingInfoDescription.$t = markType(HighlightingInfoDescription, 'HighlightingInfoDescription', Description.$); return HighlightingInfoDescription; })();