function table_getFocusedCell<TFeatures, TData>(table):
| Cell<TFeatures, TData, any>
| undefined;Defined in: features/cell-selection/cellSelectionFeature.utils.ts:506
Returns the active cell, i.e. the anchor of the most recent range.
Focus is derived rather than stored: in spreadsheet semantics, dragging from A1 to C5 leaves the active cell at A1, so the active range's anchor already is the active cell.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
| Cell<TFeatures, TData, any> | undefined
const cell = table_getFocusedCell(table)