devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 877 B
TypeScript
import { FieldsSettings } from '../../model/options/fields';
import { StringResources } from '../../string-resources';
import { Rectangle } from '@devexpress/utils/lib/geometry/rectangle';
import { IReadOnlyPropertyHolder } from '../../interfaces/i-rich-edit-core';
import { DocumentRendererPageCache } from '../renderes/common/document-renderer';
import { FrameBaseListener } from './frame-base-listener';
export declare class AnchorListener extends FrameBaseListener {
private readOnlyPropertyHolder;
protected baseFrameClassName(): string;
constructor(rendererCache: DocumentRendererPageCache[], stringResources: StringResources, readOnlyPropertyHolder: IReadOnlyPropertyHolder, fieldOptions: FieldsSettings);
NotifyShow(pageIndex: number, bounds: Rectangle, tip: string, isTextBox: boolean, isAnchoredObject: boolean, rotation: number): void;
}