devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 824 B
TypeScript
import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed';
import { IRichEditControl } from '../../interfaces/i-rich-edit-core';
import { CommandBase, CommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
export declare class FindAllCommandOptions extends CommandOptions {
text: string;
matchCase: boolean;
highlightResults: boolean;
results?: FixedInterval[];
constructor(control: IRichEditControl, text: string, matchCase: boolean, highlightResults: boolean, results?: FixedInterval[]);
}
export declare class FindAllCommand extends CommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
executeCore(_state: SimpleCommandState, options: FindAllCommandOptions): boolean;
isEnabledInReadOnlyMode(): boolean;
}