UNPKG

devexpress-richedit

Version:

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

21 lines (20 loc) 1.16 kB
import { MaskedParagraphProperties } from '../../../../../../common/model/paragraph/paragraph-properties'; import { TabProperties } from '../../../../../../common/model/paragraph/paragraph-style'; import { Data } from '../../data'; import { ElementHandlerTable } from '../destination'; import { ParagraphPropertiesBaseDestination } from './paragraph-properties-base-destination'; export interface IParagraphNumberingPropertiesDestination { numberingId: number; listLevelIndex: number; } export declare class ParagraphPropertiesDestination extends ParagraphPropertiesBaseDestination { get listLevelIndex(): number; set listLevelIndex(value: number); get numberingId(): number; set numberingId(value: number); protected get elementHandlerTable(): ElementHandlerTable; static handlerTable: ElementHandlerTable; paragraphDestination: IParagraphNumberingPropertiesDestination; constructor(data: Data, paragraphDestination: IParagraphNumberingPropertiesDestination, paragraphProperties: MaskedParagraphProperties, tabs: TabProperties); static getThis(data: Data): ParagraphPropertiesDestination; }