devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 735 B
TypeScript
import { ICommandOptions } from '../command-base';
import { ICommandState } from '../i-command';
import { SelectionCommandBase } from './selection-command-base';
export declare abstract class GoToPrevPageCommandBase extends SelectionCommandBase {
getPosition(): number;
abstract extendSelection(): boolean;
isEnabled(): boolean;
}
export declare class GoToPrevPageCommand extends GoToPrevPageCommandBase {
executeCore(_state: ICommandState, _options: ICommandOptions): boolean;
extendSelection(): boolean;
}
export declare class ExtendGoToPrevPageCommand extends GoToPrevPageCommandBase {
executeCore(_state: ICommandState, _options: ICommandOptions): boolean;
extendSelection(): boolean;
}