Defined in: features/cell-selection/cellSelectionFeature.types.ts:19
A single rectangular cell selection, stored as its two defining corners.
The anchor corner stays put while the focus corner moves during a shift-extend or a drag, so the pair carries strictly more information than a normalized min/max rectangle would. Corners are stored as flat row and column ids rather than nested objects or a packed rowId_columnId key, because getRowId is user-supplied and may return ids containing any separator.
anchorColumnId: string;Defined in: features/cell-selection/cellSelectionFeature.types.ts:20
anchorRowId: string;Defined in: features/cell-selection/cellSelectionFeature.types.ts:21
focusColumnId: string;Defined in: features/cell-selection/cellSelectionFeature.types.ts:22
focusRowId: string;Defined in: features/cell-selection/cellSelectionFeature.types.ts:23