Interface IScrollRequest

Value of the signal emitted by cell on editor scroll request.

interface IScrollRequest {
    defaultPrevented: boolean;
    scrollWithinCell: ((options) => void);
}

Properties

defaultPrevented: boolean

Whether the default scrolling was prevented due to the cell being out of viewport.

scrollWithinCell: ((options) => void)

Scrolls to the target cell part, fulfilling the scroll request.

Notes

This method is intended for use by windowed containers that require the cell to be first scrolled into the viewport to then enable proper scrolling within cell.

Type declaration