UNPKG

devexpress-richedit

Version:

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

15 lines (14 loc) 663 B
import { ICommandOptions } from '../command-base'; import { ICommandState } from '../i-command'; import { SelectionCommandBase } from './selection-command-base'; export declare abstract class GoToParagraphEndCommandBase extends SelectionCommandBase { executeCore(_state: ICommandState, _options: ICommandOptions): boolean; getPositionEndParagraph(): number; abstract extendSelection(): boolean; } export declare class GoToParagraphEndCommand extends GoToParagraphEndCommandBase { extendSelection(): boolean; } export declare class ExtendGoToParagraphEndCommand extends GoToParagraphEndCommandBase { extendSelection(): boolean; }