UNPKG

@progress/kendo-angular-layout

Version:

Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts

26 lines (25 loc) 934 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PreventableEvent } from "@progress/kendo-angular-common"; /** * Arguments for the `select` event of the TabStrip. * The `select` event fires when tab is selected (clicked). */ export class SelectEvent extends PreventableEvent { index; title; /** * Constructs the event arguments for the `select` event. * @param index - The index of the selected tab. * @param title - The title of the selected tab. * * @hidden */ constructor(index, title) { super(); this.index = index; this.title = title; } }