Scrolls the active cell into view.
(options: ScrollIntoViewOptions = {block: 'nearest'})
| 175 | |
| 176 | /** Scrolls the active cell into view. */ |
| 177 | scrollActiveCellIntoView(options: ScrollIntoViewOptions = {block: 'nearest'}) { |
| 178 | this._pattern.activeCell()?.element().scrollIntoView(options); |
| 179 | } |
| 180 | |
| 181 | /** Gets the cell pattern for a given element. */ |
| 182 | private _getCell(element: Element | null | undefined): GridCellPattern | undefined { |