UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

23 lines (20 loc) 564 B
/** * [Documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/overlay-scroll). * Scroll strategies determines how the scrolling will be handled in the provided IgxOverlayService. */ export interface IgrScrollStrategy { /** * Attaches the strategy * ```typescript * settings.scrollStrategy.attach(); * ``` */ attach(): void; /** * Detaches the strategy * ```typescript * settings.scrollStrategy.detach(); * ``` */ detach(): void; }