@revolist/revogrid / SelectionStoreState
Type Alias: SelectionStoreState
ts
type SelectionStoreState: {
edit: EditCellStore | null;
focus: Cell | null;
lastCell: Cell | null;
nextFocus: Cell | null;
range: RangeArea | null;
tempRange: RangeArea | null;
tempRangeType: string | null;
};
Represents the state of the selection store. It contains information about the selection range, temporary range, focused cell, editing cell, last focused cell, and next cell to focus.
Type declaration
Name | Type | Description | Defined in |
---|---|---|---|
edit | EditCellStore | null | Editing cell store | src/types/selection.ts:36 |
focus | Cell | null | Focused cell coordinate | src/types/selection.ts:32 |
lastCell | Cell | null | Last cell which was focused | src/types/selection.ts:40 |
nextFocus | Cell | null | Next cell to focus | src/types/selection.ts:44 |
range | RangeArea | null | - | src/types/selection.ts:20 |
tempRange | RangeArea | null | Temporary range selection area | src/types/selection.ts:24 |
tempRangeType | string | null | Type of the temporary range selection | src/types/selection.ts:28 |