/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Sets the scroll mode of the Grid. * * The available values are: * * `none`—Hides scrollbars. The Grid does not scroll. * * `scrollable`—Shows scrollbars in the Grid. * * `virtual`—Enables the [virtual scroll mode](https://www.telerik.com/kendo-angular-ui/components/grid/scroll-modes/virtual) of the Grid. * * @example * ```html * * ``` */ export type ScrollMode = 'none' | 'scrollable' | 'virtual';