UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

14 lines (13 loc) 727 B
import { CommandBase } from '../command-base'; import { SimpleCommandState } from '../command-states'; import { TableNavDirection } from '../../selection/table-nav-direction'; export { TableNavDirection }; export declare class SelectionCommandBase extends CommandBase<SimpleCommandState> { getState(): SimpleCommandState; isEnabledInReadOnlyMode(): boolean; protected shouldCollapseSingleCellTableSelection(entryDirection: TableNavDirection, shrinkDirection: TableNavDirection): boolean; protected collapseSingleCellTableSelectionToCaret(): boolean; protected collapseTableCellSelectionSpatialFocus(direction: TableNavDirection): boolean; beforeExecute(): void; afterExecute(): void; }