devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 527 B
TypeScript
import { IEventListener } from '../utils/event-dispatcher';
import { ICanvasState } from '../scroll/canvas-states';
export interface ISelectionLayoutChangesListener extends IEventListener {
NotifySelectionLayoutChanged(): any;
NotifySearchSelectionLayoutChanged(): any;
NotifyMisspelledSelectionLayoutChanged(): any;
NotifyRangePermissionLayoutChanged(): any;
}
export interface IScrollLayoutChangesListener extends IEventListener {
NotifyScrollPositionChanged(canvasState: ICanvasState): any;
}