devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 489 B
TypeScript
import { Field } from '../../model/fields/field';
import { CommandSimpleOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { HyperlinkCommandBase } from './hyperlink-command-base';
export declare class OpenHyperlinkCommand extends HyperlinkCommandBase {
executeCore(state: SimpleCommandState, options: CommandSimpleOptions<Field>): boolean;
isEnabledInReadOnlyMode(): boolean;
protected aspxForceSendingRequest(): void;
}