UNPKG

devexpress-richedit

Version:

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

32 lines (31 loc) 1.77 kB
import { XmlReader } from '../../../zip/xml-reader'; import { Data } from '../../data'; import { LeafElementDestination } from '../destination'; import { DrawingAnchorDestination } from './drawing-destination'; export declare class DrawingAnchorWrapNoneDestination extends LeafElementDestination { anchorDestination: DrawingAnchorDestination; constructor(data: Data, anchorDestination: DrawingAnchorDestination); processElementOpen(_reader: XmlReader): Promise<void>; } export declare class DrawingAnchorWrapTopAndBottomDestination extends LeafElementDestination { anchorDestination: DrawingAnchorDestination; constructor(data: Data, anchorDestination: DrawingAnchorDestination); processElementOpen(_reader: XmlReader): Promise<void>; } export declare class DrawingAnchorPolygonDestinationBase extends LeafElementDestination { anchorDestination: DrawingAnchorDestination; constructor(data: Data, anchorDestination: DrawingAnchorDestination); processElementOpen(reader: XmlReader): Promise<void>; } export declare class DrawingAnchorWrapSquareDestination extends DrawingAnchorPolygonDestinationBase { constructor(data: Data, anchorDestination: DrawingAnchorDestination); processElementOpen(reader: XmlReader): Promise<void>; } export declare class DrawingAnchorWrapThroughDestination extends DrawingAnchorPolygonDestinationBase { constructor(data: Data, anchorDestination: DrawingAnchorDestination); processElementOpen(reader: XmlReader): Promise<void>; } export declare class DrawingAnchorWrapTightDestination extends DrawingAnchorPolygonDestinationBase { constructor(data: Data, anchorDestination: DrawingAnchorDestination); processElementOpen(reader: XmlReader): Promise<void>; }