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) 876 B
import { SectionColumnProperties } from '../../../../../../common/model/section/section-column-properties'; import { SectionProperties } from '../../../../../../common/model/section/section-properties'; import { XmlReader } from '../../../zip/xml-reader'; import { Data } from '../../data'; import { ElementDestination, ElementHandlerTable } from '../destination'; export declare class ColumnsDestination extends ElementDestination { protected get elementHandlerTable(): ElementHandlerTable; protected get secProps(): SectionProperties; static handlerTable: ElementHandlerTable; columnInfos: SectionColumnProperties[]; static onColumn(data: Data): ElementDestination; protected static getThis(data: Data): ColumnsDestination; processElementOpen(reader: XmlReader): Promise<void>; processElementClose(_reader: XmlReader): void; }