RevoGrid Documentation v4.15.8 / 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:39 |
focus | Cell | null | Focused cell coordinate | src/types/selection.ts:35 |
lastCell | Cell | null | Last cell which was focused | src/types/selection.ts:43 |
nextFocus | Cell | null | Next cell to focus | src/types/selection.ts:47 |
range | RangeArea | null | - | src/types/selection.ts:23 |
tempRange | RangeArea | null | Temporary range selection area | src/types/selection.ts:27 |
tempRangeType | string | null | Type of the temporary range selection | src/types/selection.ts:31 |