UNPKG

devexpress-richedit

Version:

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

14 lines (13 loc) 649 B
import { IRichEditControl } from '../../interfaces/i-rich-edit-core'; import { CommandBase, CommandOptions } from '../command-base'; import { SimpleCommandState } from '../command-states'; export declare class ReplaceAllCommandOptions extends CommandOptions { text: string; replaceText: string; matchCase: boolean; constructor(control: IRichEditControl, text: string, replaceText: string, matchCase: boolean); } export declare class ReplaceAllCommand extends CommandBase<SimpleCommandState> { getState(): SimpleCommandState; executeCore(_state: SimpleCommandState, options: ReplaceAllCommandOptions): boolean; }