devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 862 B
TypeScript
import { DocumentLayout } from '../../../layout/document-layout';
import { LayoutPage, LayoutPageFlags } from '../../../layout/main-structures/layout-page';
import { LayoutSelectionInfo } from '../../../layout/selection/layout-selection-info';
import { LayoutSelectionItem } from '../../../layout/selection/layout-selection-items';
import { SelectionRendererBase } from './selection-renderer-base';
export declare class RangePermissionRenderer extends SelectionRendererBase {
protected layoutPageFlag: LayoutPageFlags;
renderAllPageSelection(layout: DocumentLayout, pageIndex: number, force: boolean): void;
protected renderItem(item: LayoutSelectionItem, layoutPage: LayoutPage): HTMLElement;
closeDocument(): void;
protected getLayoutSelectionInfo(): LayoutSelectionInfo;
protected getContainer(pageElement: Node): Node;
}