devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
15 lines (14 loc) • 675 B
TypeScript
import { ICommandOptions } from '../command-base';
import { ICommandState } from '../i-command';
import { SelectionCommandBase } from './selection-command-base';
export declare abstract class GoToParagraphStartCommandBase extends SelectionCommandBase {
executeCore(_state: ICommandState, _options: ICommandOptions): boolean;
getPositionStartParagraph(): number;
abstract extendSelection(): boolean;
}
export declare class GoToParagraphStartCommand extends GoToParagraphStartCommandBase {
extendSelection(): boolean;
}
export declare class ExtendGoToParagraphStartCommand extends GoToParagraphStartCommandBase {
extendSelection(): boolean;
}