devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
16 lines (15 loc) • 746 B
TypeScript
import { CommandBase, ICommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
export declare abstract class GoToPrevWordCommandBase extends CommandBase<SimpleCommandState> {
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;
}