* Change the cursor style for different selection modes
(ev: KeyboardEvent | MouseEvent)
| 857 | * Change the cursor style for different selection modes |
| 858 | */ |
| 859 | public updateCursorStyle(ev: KeyboardEvent | MouseEvent): void { |
| 860 | if (this._selectionService?.shouldColumnSelect(ev)) { |
| 861 | this.element!.classList.add('column-select'); |
| 862 | } else { |
| 863 | this.element!.classList.remove('column-select'); |
| 864 | } |
| 865 | } |
| 866 | |
| 867 | /** |
| 868 | * Display the cursor element |
no test coverage detected