@progress/kendo-angular-treelist
Version:
Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.
21 lines (20 loc) • 819 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ColumnBase } from '../columns/column-base';
/**
* Represents the event arguments for the `columnLockedChange` event in the Kendo UI for Angular TreeList.
* Use this event to access the columns whose locked state has changed.
*
*/
export declare class ColumnLockedChangeEvent {
/**
* The array of columns whose locked state has changed.
*/
columns: ColumnBase[];
/**
* @hidden
*/
constructor(columns: ColumnBase[]);
}