devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 647 B
TypeScript
import { Rectangle } from '@devexpress/utils/lib/geometry/rectangle';
import { IFrameBaseListener } from './frame-base-listener';
export declare class AutoScrollListener implements IFrameBaseListener {
static HALF_SIZE: number;
protected baseFrame: HTMLElement;
protected serviceContainer: HTMLElement;
protected top: HTMLElement;
protected center: HTMLElement;
protected bottom: HTMLElement;
constructor(serviceContainer: HTMLElement);
NotifyHide(): void;
NotifyShow(_pageIndex: number, bounds: Rectangle, _tip: string, _isTextBox: boolean, _isAnchoredObject: boolean, _rotation: number): void;
}