UNPKG

devexpress-richedit

Version:

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

17 lines (16 loc) 788 B
import { ICommandOptions } from '../command-base'; import { SimpleCommandState } from '../command-states'; import { SelectionCommandBase } from './selection-command-base'; export declare abstract class GoToPrevWordCommandBase extends SelectionCommandBase { getState(): SimpleCommandState; getStartPosition(): number; isEnabledInReadOnlyMode(): boolean; executeCore(_state: SimpleCommandState, _options: ICommandOptions): boolean; protected abstract setSelection(position: number): any; } export declare class GoToPrevWordCommand extends GoToPrevWordCommandBase { protected setSelection(position: number): void; } export declare class ExtendGoToPrevWordCommand extends GoToPrevWordCommandBase { protected setSelection(position: number): void; }