UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

16 lines (15 loc) 812 B
import { LayoutPosition } from '../../../layout/layout-position'; import { LayoutAnchoredObjectBox } from '../../../layout/main-structures/layout-boxes/layout-anchored-object-box'; import { LayoutPageArea } from '../../../layout/main-structures/layout-page-area'; import { TablePosition } from '../../../model/tables/main-structures/table'; export declare class FloatingRestartInfoHolder { anchorRestartFromPageIndex: number; oldAnchorObjectsFromPage: Record<number, LayoutAnchoredObjectBox>; oldOtherTextBoxPageAreas: Record<number, LayoutPageArea>; oldTableAnchorObjects: Map<TablePosition, number[]>; constructor(); init(): void; storeInfo(lp: LayoutPosition): void; get isRestartByAnchorObjects(): boolean; setCalculatedObjects(lp: LayoutPosition): void; }