function cell_getSelectionExtendHandler<TFeatures, TData, TValue>(cell): (_e) => void;Defined in: features/cell-selection/cellSelectionFeature.utils.ts:1143
Creates a handler that extends the active range to this cell during a drag.
No rAF coalescing is needed here, unlike the resize handler: mouseenter fires once per cell boundary crossed rather than continuously, and deferring it by a frame would only delay the highlight.
TFeatures extends TableFeatures
TData extends RowData
TValue extends unknown = unknown
Cell<TFeatures, TData, TValue>
(_e): void;unknown
void
<td onMouseEnter={cell.getSelectionExtendHandler()} />